I am using this code snippet to add KeyDown event handler to any element in the html form
for(var i=0;i
I used this:
function check(){ if (event.keyCode == 32){ alert("Space is pressed"); } }
and in my body tag: onKeyPress="check()"
onKeyPress="check()"