timw4mail
timw4mail

Reputation: 1766

What are the exceptions to consistent event names in Javascript?

What are the Javascript events with different names in different browsers?

I know that the scroll event is different in gecko as DOM-MouseScroll instead of mousewheel, for example.

Upvotes: 0

Views: 67

Answers (1)

user113716
user113716

Reputation: 322502

If you're looking for a reference table, here's one that you may find helpful:

http://www.quirksmode.org/dom/events/index.html

I don't know how current it is, but you should still get some good info.

Upvotes: 1

Related Questions