I have a fading div when using fadeTo . It works fine in Firefox and IE9. It does not work in IE8. Here is my code:
Js
var $j = jQuery.noConflict(); window.onload = function(){ $j('#fadein').fadeTo(6000, 1, function() { }); };
HTML
<div class="img-center" id="fadein" style="opacity:0;"> <img src="src.jpg" alt="Text" class="feature-image" /> </div>
How do I get this to work in IE8? I don't mind switching from fadeTo to fadeIn or some other method of fading into a div if it works in IE8.
source share