My current setup seems to be functioning, but I can't shake the feeling that it's not quite right.
CSS:
#logo {
display:none;
}
JQuery:
$("#logo").delay(800).fadeIn(800);
While this configuration works, I'm concerned about whether jQuery should be manipulating the CSS properties. When using the jQuery fadeIn
function, does it automatically override the display:none
with display:inline/initial/block/
or other values?