Skip to content

Instantly share code, notes, and snippets.

@atelic
Created July 14, 2015 13:49
Show Gist options
  • Save atelic/db5fa44d5704ae9e7622 to your computer and use it in GitHub Desktop.
Save atelic/db5fa44d5704ae9e7622 to your computer and use it in GitHub Desktop.
$(document).keydown(function(e) {
if (e.keyCode === 13) {
$target = $(e.target);
if ($target.hasClass('whatever-class')) {
var $button = $target.siblings('span').find('button');
if(!$button.is(':disabled')) {
$button.click();
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment