internet explorer - Artifacts when Fading problem with IE and Jquery -
open site in ie8 (not sure 7) http://www.koffeebreak.info/
see how main div fades in gets black artifacts on it?
i found fix on stackoverflow question: fading issues in internet explorer 7 when using jquery
but when applied it:
jquery("#homepagewelcome").children().fadeto('fast', 1, function(){ document.getelementbyid("#homepagewelcomecontent").style.removeattribute("filter"); });
nothing happens. ideas?
try
$("#homepagewelcomecontent")[0].style.removeattribute("filter");
Comments
Post a Comment