| NN6 is leading here as it fires onkeydown, onkeypress, and onkeyup
for the delete key. You can check event.which == 46 to find that key.
IE5 is firing onkeydown and onkeyup but not onkeypress for the delete
key. You can check event.keyCode == 46 to find the key.
Finally NN4 seems to fire only onkeyup for the delete key but unfortunately event.which is 0 in that case which makes it impossible to recognize the key. |