Skip to content

Instantly share code, notes, and snippets.

@DaRaFF
Created June 26, 2011 09:19
Show Gist options
  • Save DaRaFF/1047434 to your computer and use it in GitHub Desktop.
Save DaRaFF/1047434 to your computer and use it in GitHub Desktop.
List properties of touchstart event
document.addEventListener('touchstart', function(event) {
for (var property in event.touches[0]) {
console.log(property + ": " + event.touches[0][property]);
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment