Skip to content

Instantly share code, notes, and snippets.

@pieterbeulque
Created December 22, 2012 12:19
Show Gist options
  • Save pieterbeulque/4358678 to your computer and use it in GitHub Desktop.
Save pieterbeulque/4358678 to your computer and use it in GitHub Desktop.
Keyboard navigation with jQuery
var keyboardNavigation = function (e) {
// Disables the keyboard navigation in textfields
if ($(e.target).is('input, textarea')) return false;
switch (e.which) {
// Your keyboard navigation switch-cases
}
}
$(document).ready(function () {
$(document).on('keyup', keyboardNavigation);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment