JavaScript window.onkeydown without jQuery

Bind to window.onkeydown natively without jQuery.

window.onkeydown = function(event) {
    if (event.keyCode === 27) {
        console.log('escape pressed');
    }
};
View this page on GitHub.
Posted .

Comments

Leave a Reply