Guest User

Untitled

a guest
Jun 20th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var testEl = document.getElementById("el");
  2. testEl.onmousedown = function () {
  3. // initialize mouse interface
  4. }
  5. testEl.ontouchstart = function () {
  6. testEl.onmousedown = null; // initialize touch interface
  7. }
Add Comment
Please, Sign In to add comment