How can I cancel the keydown of a specific key on the keyboard, for example(space, enter and arrows) in an HTML page.
keydown
arrows
Just return false. Beware that on Opera this doesn't work. You might want to use onkeyup instead and check the last entered character and deal with it. Or better of use JQuery KeyPress