Skip to content

Instantly share code, notes, and snippets.

@handleman
Created October 8, 2014 11:52
Show Gist options
  • Save handleman/9e94486833a922bc6710 to your computer and use it in GitHub Desktop.
Save handleman/9e94486833a922bc6710 to your computer and use it in GitHub Desktop.
if Input Fires Keypress Event Twice
self.$inputFilter.on('keyup', function (event) {
text = $(this).val();
event.stopImmediatePropagation();
// data
return false;
}).click(function () {
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment