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/>
jquery.hotkeys 0.8+ - broken, the event will fire on any keystroke anywhere, even outside fields!
<br/>
Output: <div id="out"></div>
JavaScript
$(document).bind('keyup', '$', function() {
console.log('key down');
$('#out').append(document.createTextNode('!'));
});