Hi, I'm having a problem with the fade in in IE7 using jQuery1.3.2 with this simple event binding to 3 buttons. In IE when I first pressed any of the button the fade in works, but after the initial fade in the page loads, but does not fade in at all. I have no problem with this in Firefox. Any help would be much appreciated.
$(function() { $("#button1").bind("click", function() { $("#loadhtml").fadeIn("slow").load("a.html"); }); $("#button2").bind("click", function() { $("#loadhtml").fadeIn("slow").load("b.html"); }); $("#button3").bind("click", function() { $("#loadhtml").fadeIn("slow").load("c.html"); }); }); <input type="button" id="a" value="Show a.htmll" /> <input type="button" id="b" value="Show b.html" /> <input type="button" id="c" value="Show c.html" /> <div id="loadhtml"></div>