vote up 0 vote down star

In my page I have a bunch (about 30) dom nodes that should be added invisible, and fade in when they are fully loaded.
The elements need a display: inline-block style.

I would like to use the jquery .fadeIn() function. This requires that the element initially has a display: none; rule to initially hide it. After the fadeIn() the elements off course have the default display: inherit;

How can I use the fade functionality with a display value other than inherit?

flag

70% accept rate

1 Answer

vote up 1 vote down check

You could use jQuery's animate function to change the opacity yourself, leaving the display unaffected.

link|flag
Thanks . – boris callens Jul 7 at 10:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.