Skip to content

Instantly share code, notes, and snippets.

@hongkheng
Created May 7, 2015 03:46
Show Gist options
  • Save hongkheng/fc6129175d4f7ab7edec to your computer and use it in GitHub Desktop.
Save hongkheng/fc6129175d4f7ab7edec to your computer and use it in GitHub Desktop.
Long press jquery
var timeoutId = 0;
$('#myElement').mousedown(function() {
timeoutId = setTimeout(myFunction, 1000);
}).bind('mouseup mouseleave', function() {
clearTimeout(timeoutId);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment