JavaScript window.onkeydown without jQuery
Bind to window.onkeydown
natively without jQuery.
window.onkeydown = function(event) {
if (event.keyCode === 27) {
console.log('escape pressed');
}
};
Bind to window.onkeydown
natively without jQuery.
window.onkeydown = function(event) {
if (event.keyCode === 27) {
console.log('escape pressed');
}
};
Comments
Leave a Reply