David .Wu Tue, 06 Oct 2009 00:02:26 -0700
keyCode and which will get the same value, so anything different?
<script> $(function() { $(window).keydown(function(e) { console.log(e.keyCode); console.log(e.which); }); }); </script>