Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created February 28, 2010 23:20
Show Gist options
  • Save drewlesueur/317907 to your computer and use it in GitHub Desktop.
Save drewlesueur/317907 to your computer and use it in GitHub Desktop.
touchmove
<!doctype html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script>
$('#m')[0].touchmove = function(e){
console.log(e.tartetTouches);
}
</script>
</head>
<body>
<div id="m">hello world</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment