mwbrooks / thumbs.js

Add touch support to your browser with thumbs.js - a small, transparent, and syntax-less library.
http://mwbrooks.github.com/thumbs.js/
MIT License
318 stars 36 forks source link

onXXX only fires on <a> #11

Open mwbrooks opened 13 years ago

mwbrooks commented 13 years ago

Events defined as elements attributes only fire on anchor elements.

Event fires:

<a href="#" ontouchmove="console.log('move');">Move</a>

Event does not fire:

<button ontouchmove="console.log('move');">Move</button>