jquery fade element does not show elements styled 'visibility: hidden'
Posted
by kalpaitch
on Stack Overflow
See other posts from Stack Overflow
or by kalpaitch
Published on 2010-03-12T20:42:50Z
Indexed on
2010/03/12
20:47 UTC
Read the original article
Hit count: 271
I have a bunch of thumbnails which I am loading with a style of visibility: hidden;
so that they all maintain their correct layouts. Once the page is fully loaded I have a jquery function that fades them in. This worked when their style was set to display: none;
but obviously the layout screwed up then. Any suggestions?
Heres the fade line:
$('.littleme').fadeIn('slow');
© Stack Overflow or respective owner