key_pressed(event)
6
Returns the keycode of the key we wrote on a textarea/input. works on IE and Firefox
function key_pressed(e){
var keynum = (window.event) ? e.keyCode : e.which;
return keynum;
}



KennethCC
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
There are currently no comments for this snippet.