Bug Tracker

Ticket #1564 (closed bug: wontfix)

Opened 1 year ago

Last modified 9 months ago

scroll event error in firefox

Reported by: bigqiang Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.2.2 Component: event
Version: 1.1.4 Keywords: scroll
Cc: Needs: Review

Description

Doing $("body").scroll() doesnt raise the event specified in the onscroll attribute in firefox.

Attachments

1564.diff (0.6 kB) - added by davidserduke 9 months ago.
possible patch

Change History

Changed 9 months ago by davidserduke

  • need changed from Patch to Review
  • status changed from new to closed
  • resolution set to wontfix
  • milestone changed from 1.2 to 1.2.2

While this does appear to be true, if you look at the official documentation here:

http://docs.jquery.com/Events

You'll see .scroll() as a trigger is not supported. That said, I would fix it if it was an easy fix but it appears in FireFox? (and Safari doesn't work so perhaps there too or some other problem) the onscroll is set as an attribute without a property. So when the code checks for the onscroll property it doesn't exist. The fix would be to use getAttribute() (plus much research and testing) and at this point I don't see a compelling argument to make the change.

If you disagree you can reopen the bug with your thoughts.

Changed 9 months ago by davidserduke

possible patch

Changed 9 months ago by davidserduke

BTW, just in case someone decides to fix it, while I was looking in to the bug I found a possible fix in .trigger() and have attached it as a possible patch. It is not thoroughly tested by any means.

Note: See TracTickets for help on using tickets.