Keyup Event with JQuery.Hotkeys 0.8+
by nwinkler
HTML
<script src="https://raw.github.com/tzuryby/jquery.hotkeys/2c5a769ea5b03f654627933f1f12a978cc4af2fd/jquery.hotkeys.js"></script>
Text: <input type="text" />
Url: <input type="url" />
<br/>
Hotkey: 0 - jquery.hotkeys 0.8+
<br/>
Output: <div id="out"></div>
JavaScript
$(document).bind('keydown.0', function() {
console.log('key down');
$('#out').append(document.createTextNode('!'));
});