Bug Tracker

Opened 14 years ago

Closed 14 years ago

#4503 closed bug (wontfix)

in IE6 load handler for img element is called many times for animated gifs

Reported by: jdavidn Owned by:
Priority: major Milestone: 1.4
Component: ajax Version: 1.3.2
Keywords: Cc:
Blocked by: Blocking:

Description

If a DOM img element is assigned a 'load' callback function and if subsequently that img is loaded with an animated gif then the load function is called infinitely many times in IE 6 whenever the animated gif repeats its animation cycle. This unexpected behavior does not exist in FireFox.

I have not tested it with IE7.

I have included a sample html page that demonstrates this bug.

Attachments (1)

animated-gif-bug.zip (37.1 KB) - added by jdavidn 14 years ago.
unzip file and open loads-animated.html in IE 6 to see bug

Download all attachments as: .zip

Change History (2)

Changed 14 years ago by jdavidn

Attachment: animated-gif-bug.zip added

unzip file and open loads-animated.html in IE 6 to see bug

comment:1 Changed 14 years ago by dmethvin

Resolution: wontfix
Status: newclosed

This definitely seems like a long-standing browser bug; here's a related issue from 2005:

http://bytes.com/groups/javascript/150332-problem-image-onload-event-firing-too-early-ie

It doesn't seem like something jQuery could easily fix, since for instance you might change the src attribute and want the load event to fire several times. You could use .one() or unbind the load event when you've determined that the image has correctly loaded.

Note: See TracTickets for help on using tickets.