Skip to content

Instantly share code, notes, and snippets.

@rbtbr
Created November 14, 2011 10:46
Show Gist options
  • Save rbtbr/1363710 to your computer and use it in GitHub Desktop.
Save rbtbr/1363710 to your computer and use it in GitHub Desktop.
Mousemove and Touchmove Decision
var xPos;
$(yourElement).bind('touchstart mousedown', function (event) {
event.preventDefault();
if (event.type == 'touchstart') {
xPos = event.originalEvent.targetTouches[0].layerX;
} else {
xPos = event.originalEvent.layerX;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment