[Proto-Scripty] Re: Odd behaviour with chained calls.

2009-02-17 Thread Richard Quadling
2009/2/16 kangax kan...@gmail.com: On Feb 16, 11:10 am, Richard Quadling rquadl...@googlemail.com wrote: Hi. I want to set an error message for 20 seconds ... $('sessionError').update(o_E.responseText).show().hide.delay(20); The message is displayed correctly. But not hidden again

[Proto-Scripty] Re: Odd behaviour with chained calls.

2009-02-17 Thread Daniel Rubin
Richard Quadling wrote: Hi. I want to set an error message for 20 seconds ... $('sessionError').update(o_E.responseText).show().hide.delay(20); The message is displayed correctly. But not hidden again after 20 seconds or so. It's because you lose the scope of the $('sessionError')

[Proto-Scripty] Re: Odd behaviour with chained calls.

2009-02-17 Thread Richard Quadling
2009/2/16 Daniel Rubin dru...@dimedis.de: Richard Quadling wrote: Hi. I want to set an error message for 20 seconds ... $('sessionError').update(o_E.responseText).show().hide.delay(20); The message is displayed correctly. But not hidden again after 20 seconds or so. It's because you

[Proto-Scripty] Re: Odd behaviour with chained calls.

2009-02-16 Thread kangax
On Feb 16, 11:10 am, Richard Quadling rquadl...@googlemail.com wrote: Hi. I want to set an error message for 20 seconds ... $('sessionError').update(o_E.responseText).show().hide.delay(20); The message is displayed correctly. But not hidden again after 20 seconds or so. Instead, I'm