https://github.com/madrobby/keymaster
// define short of 'a'key('a', function(){ alert('you pressed a!') });// returning false stops the event and prevents default browser eventskey('ctrl+r', function(){ alert('stopped reload!'); return false });// multiple shortcuts that do the same thingkey('⌘+r, ctrl+r', function(){ });