[jQuery] Re: How to know if div opened or closed

2009-06-09 Thread tij_dev
Thanks a lot I'll try that :) On 9 juin, 13:19, Armand Datema wrote: > Here is part of the code we use to set a min or max image on the collapsed > pane ( check the display property of your element > >                 var visibility = jQuery(this).css('display'); > >                 if (visibili

[jQuery] Re: How to know if div opened or closed

2009-06-09 Thread Armand Datema
Here is part of the code we use to set a min or max image on the collapsed pane ( check the display property of your element var visibility = jQuery(this).css('display'); if (visibility == "none") { $image.attr('src', pageurl+"max.png");