I'm using fadeIn to fade in my BG DIV's.
example: http://commonmovement.com/MIP/about-mip.html
This works in all browsers except IE, where it just "pops" on. Not sure how to fix this.
I tried using:
$('#main.about_main').css('filter', 'alpha(opacity=0)');
$('#main.about_main').fadeIn(2000);
but no luck.
CSS:
#main { height:100%; width:100%; padding:0; }
#main.about_main {display: none;}
Anyone know how to fix this?
Thanks