JSFiddle - React, Tailwind, and code Playground
HTML
<div>hit <kbd>ESC</kbd>(Before give focus to this frame)</div>
JavaScript
document.onkeydown=function keypress(e) {
e=(e||window.event);
if (e.keyCode == 27) {
try{e.preventDefault();}//Non-IE
catch(x){e.returnValue=false;}//IE
window.location = "http://stackoverflow.com/questions/7218581/";
};
}