Skip to main content

Bug Tracker

Side navigation

#8696 closed bug (invalid)

Opened March 29, 2011 03:43PM UTC

Closed March 29, 2011 04:14PM UTC

Last modified March 14, 2012 04:02PM UTC

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".

Attachments (0)
Change History (3)

Changed March 29, 2011 04:08PM UTC by ajpiano comment:1

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)

Changed March 29, 2011 04:14PM UTC by rwaldron comment:2

component: unfiledevent
resolution: → invalid
status: newclosed

+1 to ajpiano

This ticket is invalid, please use correct, documented syntax:

jQuery(document).ready(function () {

Changed March 29, 2011 08:54PM UTC by Ripei comment:3

oh... I am sorry. Havn't noticed that up to now. Thanks for the fast response! (Thumbs up :)