You are here: irt.org | About | Feedback | 1051 [ previous next ]
Feedback on:
irt.org FAQ Knowledge Base Q954
Sent by
Kevin Schlipper on April 06, 2000 at 16:39:14:
Worth:
Not worth reading
Comments:
It is incorrect. It is possible to capture function keys being pressed with onkeydown. q.v. the following code:
document.onkeydown = keyhandler;
function keyhandler(e) {
if (document.layers)
Key = e.which;
else
Key = window.event.keyCode;
if (Key != 0)
alert("Key pressed! ASCII-value: " + Key);
}
Other feedback on 'irt.org FAQ Knowledge Base Q954' - show all