I have not used jquery.hotkeys.js in a while, but I cant seem to get even the most basic test to work in any current browsers.
Using Ver 0.8 I also tried with other versions of jQuery but stuck with 1.4.2 for testing since that was what John Resig had in his examples.
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="/js/jquery.hotkeys.js"></script>
<script>
jQuery(document).ready(function(){
$(document).bind('keydown', "f", function() {
alert("click");
return false;
});
});
</script>
</head>
<body>