Skip to content

Instantly share code, notes, and snippets.

@Altreus
Created April 2, 2015 14:34
Show Gist options
  • Save Altreus/4385a872232395da3ffa to your computer and use it in GitHub Desktop.
Save Altreus/4385a872232395da3ffa to your computer and use it in GitHub Desktop.
var press_button = curry(function(button, event) {
if (event.which == 13) {
event.preventDefault();
$(button).click();
}
});
$('input[name=cats]').keypress(press_button('button[name=lookup_cat]'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment