#8696 closed bug (invalid)
jQuery still not working in IE9
Reported by: | Ripei | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | event | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
As of Version 1.5.1 jQuery should be compatible with IE9(vice versa). Well for me it is still not compatible on my website: Check it out here (compare with FF): [www.kaetschup.at/j16]
This is my Code used: (Just fading in various Design-Elements of the Homepage)
jQuery(window).ready(function () { jQuery(".logo").animate( {opacity: '1'} , 1000); jQuery(".corner-tl").fadeIn("slow"); jQuery(".corner-tl").delay(200).show("bounce", {distance: 40}, 500); jQuery(".corner-tr").delay(200).show("bounce", {distance: 40}, 500); jQuery(".top").delay(2000).slideDown("slow", function(){ jQuery(".main").slideDown("slow", function(){ jQuery('.content-right').delay(300).show("slide", { direction: "right"}, 1000, function(){ jQuery(".corner-br, .footer, .top-bg").fadeIn("slow"); }); }); }); });
I just noticed that it works (nearly) fine when changing "jQuery(window).ready" to "jQuery(window).load".
Change History (3)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Component: | unfiled → event |
---|---|
Resolution: | → invalid |
Status: | new → closed |
+1 to ajpiano
This ticket is invalid, please use correct, documented syntax:
jQuery(document).ready(function () {
comment:3 Changed 12 years ago by
oh... I am sorry. Havn't noticed that up to now. Thanks for the fast response! (Thumbs up :)
Note: See
TracTickets for help on using
tickets.
jQuery(window).ready(fn) has never been supported, to my knowledge. The fact that is was working is, in my opinion, a coincidence. You should use jQuery(document).ready(fn)