Modify ↓
Ticket #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: | ||
| Blocking: | Blocked by: |
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
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
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)