rm-f
08-20-2005, 08:03 PM
On an ESC keydown event, the IE resets entire form. I am looking for solution where ESC resets ONLY the active input field of the form.
if (document.all)
document.onkeydown = function () {
return event.keyCode != 27;
}
prevents ALL resets, that is not what I am looking for.
tnx,
rm -f
if (document.all)
document.onkeydown = function () {
return event.keyCode != 27;
}
prevents ALL resets, that is not what I am looking for.
tnx,
rm -f