Does the Esc key differ from browser to browser? It's 27 in Explo or Chrome and 0 in Firefox
$('body').keypress(function(e){
alert(e.which);
if(e.which == 27){
// // Close my modal window
}
});
$(document).keyup(function(e) {
if (e.keyCode == 27) { // escape key maps to keycode `27`
// // <DO YOUR WORK HERE>
}
});
You can do it like this It's 27 regardless of browser.
© 2024 OneMinuteCode. All rights reserved.