Skip to content

Instantly share code, notes, and snippets.

@alunny
Created October 22, 2010 00:24
Show Gist options
  • Save alunny/639672 to your computer and use it in GitHub Desktop.
Save alunny/639672 to your computer and use it in GitHub Desktop.
first (very rough) stab at faking touch events
document.addEventListener('click', function (evt) {
if (typeof evt.target.ontouchend == 'function') {
evt.target.ontouchend.call(evt.target, evt);
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment