[jQuery] Re: event fired after SlideDown

2008-04-03 Thread Yuval Hager
On Mar 26, 11:37 am, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: Maye you can use setInterval and periodically test if your elem is visible ? Thanks! this is exactly what I did eventually. Here's the code, I hope its sane:

[jQuery] Re: event fired after SlideDown

2008-03-26 Thread Olivier Percebois-Garve
Maye you can use setInterval and periodically test if your elem is visible ? On Tue, Mar 25, 2008 at 5:40 PM, Yuval Hager [EMAIL PROTECTED] wrote: On Mar 25, 3:35 pm, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: As I am not Drupal user difficult to understand what you can do or cant.

[jQuery] Re: event fired after SlideDown

2008-03-25 Thread Olivier Percebois-Garve
As I am not Drupal user difficult to understand what you can do or cant. Basically with jQuery animations you can pass a function as last param and it will be executed after: $(p).slideDown(slow,function(){ alert(Animation Done.); }); If you cant change it, it suggest you to use setTimeout

[jQuery] Re: event fired after SlideDown

2008-03-25 Thread Yuval Hager
On Mar 25, 3:35 pm, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: As I am not Drupal user difficult to understand what you can do or cant. Basically with jQuery animations you can pass a function as last param and it will be executed after: $(p).slideDown(slow,function(){  

[jQuery] Re: event fired after SlideDown

2008-03-25 Thread Yuval Hager
On Mar 25, 3:35 pm, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: As I am not Drupal user difficult to understand what you can do or cant. Basically with jQuery animations you can pass a function as last param and it will be executed after: $(p).slideDown(slow,function(){