I am loading data from external html files within my domain into a div on my webpage using a load content method in jQuery. I take the div out of the new page whilst hiding
@jdln -- I'm not sure if this is what she was going for and explained it wrong, or if this is another solution, however this worked for me:
For example:
/* HTML: */
I use this for a drop-down menu with a transparent PNG shadow for lte IE8 browsers
/* CSS */
#wrapper{margin-left:-9999px;}
/* jQuery */
$('#content').hide().fadeIn();
I use .hide() to make sure that the effect starts from the beginning every time, as I'm calling this from a hover event. Hope this helped!