Skip to content

Instantly share code, notes, and snippets.

@diogomachado
Created December 13, 2012 16:06
Show Gist options
  • Save diogomachado/4277468 to your computer and use it in GitHub Desktop.
Save diogomachado/4277468 to your computer and use it in GitHub Desktop.
// Evento disparado ao pressionar ESC
$(document).keyup(function(e) {
if (e.keyCode == 27) { alert(''Você pressionou ESC'); } // esc
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment