Skip to content

Instantly share code, notes, and snippets.

@juice49
Created September 15, 2015 15:08
Show Gist options
  • Save juice49/2638bba62368812a4705 to your computer and use it in GitHub Desktop.
Save juice49/2638bba62368812a4705 to your computer and use it in GitHub Desktop.
Buttons for non-buttons
const $ = require('jquery');
const keycode = require('keycode');
$('[role=button]').on('keydown', function(e) {
if(keycode(e) === 'space') {
e.preventDefault();
$(this).trigger('click');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment