Created
April 2, 2015 14:34
-
-
Save Altreus/4385a872232395da3ffa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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