You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Got a problem on my page when lightbox disappears. Some of my invisibles elements was visible against my will.
Visibly on start, the lightbox do that : $('select, object, embed').css({ visibility: 'hidden' });
and on end : $('select, object, embed').css({ visibility: 'visible' });
Regardless if elements was visible before the lightbox appears.
Somethings like that can i think resolve this i think : this.hidenedElements = $('select, object, embed').filter(function() { return !($(this).css('visibility') == 'hidden' || $(this).css('display') == 'none'); });
And use this globale variable to hide and show elements.
I start to use jquery today, so i'm not totally sure about what i wrote.
Sorry about my english and thanks for reading me.
The text was updated successfully, but these errors were encountered:
I have this issue also.
Selects from hidden divs pops up after lightbox.end.
As long as the element didn't have visibility set explicitly before lightbox open, this can be resolved by setting visibility to "" instead of "visible", but at least for me those elements don't really need hiding in the first place.
Got a problem on my page when lightbox disappears. Some of my invisibles elements was visible against my will.
Visibly on start, the lightbox do that :
$('select, object, embed').css({ visibility: 'hidden' });
and on end :
$('select, object, embed').css({ visibility: 'visible' });
Regardless if elements was visible before the lightbox appears.
Somethings like that can i think resolve this i think :
this.hidenedElements = $('select, object, embed').filter(function() { return !($(this).css('visibility') == 'hidden' || $(this).css('display') == 'none'); });
And use this globale variable to hide and show elements.
I start to use jquery today, so i'm not totally sure about what i wrote.
Sorry about my english and thanks for reading me.
The text was updated successfully, but these errors were encountered: