Bug Tracker

Modify

Ticket #8696 (closed bug: invalid)

Opened 2 years ago

Last modified 14 months ago

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

comment:1 Changed 2 years ago by ajpiano

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)

comment:2 Changed 2 years ago by rwaldron

  • Status changed from new to closed
  • Resolution set to invalid
  • Component changed from unfiled to event

+1 to ajpiano

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

jQuery(document).ready(function () {

comment:3 Changed 2 years ago by Ripei

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

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.