Graham King
Graham King

Reputation: 5720

List of Javascript mobile events

Is there a list of mobile-specific Javascript events anywhere?

I know of the touch events:

and the orientation event:

Are there others?

Upvotes: 8

Views: 10499

Answers (1)

DimitFromCave
DimitFromCave

Reputation: 143

A bit late, but here link to documentation on touch events. In short - events:

  • touchstart
  • touchend
  • touchmove
  • touchcancel

And orientationchange event is deprecated right now.

Upvotes: 0

Related Questions