Skip to content

Instantly share code, notes, and snippets.

@adamsilver
Created October 28, 2010 10:20
Show Gist options
  • Save adamsilver/651070 to your computer and use it in GitHub Desktop.
Save adamsilver/651070 to your computer and use it in GitHub Desktop.
var testEl = document.getElementById("el");
testEl.onmousedown = function () {
// initialize mouse interface
}
testEl.ontouchstart = function () {
testEl.onmousedown = null; // initialize touch interface
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment