onkeypress

J

Jon Spivey

Hi,
You'd attach the event to something, eg
<textarea name="whatever" onkeypress="alert('key pressed');"
onkeydown="alert('key down');" onkeyup="alert('key up');" >
</textarea>
 
Top