<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/js">
$(document).keydown(function(e){
if (e.keyCode == 37) {
alert( "Left");
return false;
}
});
</script>
How to make this work? I am using Firefox and don't I get this working.