Uzbekjon
Uzbekjon

Reputation: 11823

List of supported .live() events in jQuery 1.3

After reading jQuery .live() post and looking through the jQuery API I could not find a full list of events that jQuery 1.3 supports cross-browser.

Upvotes: 0

Views: 1960

Answers (2)

Topera
Topera

Reputation: 12389

They are click, dblclick, keydown, keypress, keyup, mousedown, mousemove, mouseout, mouseover, and mouseup.

You can find them in http://api.jquery.com/live/ (section caveats)

Upvotes: 2

Jacob Relkin
Jacob Relkin

Reputation: 163318

From the jQuery docs:

In jQuery 1.3.x only the following JavaScript events (in addition to custom events) could be bound with .live(): click, dblclick, keydown, keypress, keyup, mousedown, mousemove, mouseout, mouseover, and mouseup.

Upvotes: 1

Related Questions