It's late at night, I'm behind deadline, and I'm wrestling with a problem that seems very, very strange to me. Maybe it's something obvious I'm missing 'cause I'm tired, but I dunno... anyway here's my test case:
<!doctype html>
<html>
<head>
<script type="text/javascript">
function NoEsc(e)
{
e = e||window.event;
var k = e.keyCode||e.which;
if (k!=27) return true;
var s = e.target||e.srcElement;
s.value = "ESCAPE PRESSED!";
//alert("It works when this alert is shown!");
return false;
}
</script>
</head>
<body onload="document.getElementById('in1').onkeydown=NoEsc;">
<input type="text" id="in1" value="ORIGINAL VALUE">
</body>
</html>
The idea is that on my page, pressing ESC doesn't reset the whole form, just the element that has focus. For the test case above, I just make ESC manually set the text in the input element to "ESCAPE PRESSED!", then cancel the keydown event.
In IE (v9) this works perfectly. In Firefox (v14.0.1), however, nothing happens when ESC is pressed inside the input. But if I uncomment the alert line, or if I set a breakpoint in FireBug before the s.value = "ESCAPE PRESSED!" statement, then it works perfectly.
I've been working on this for an hour or two, and at this point I'm throwing up my hands in disgust and posting the problem here. I've no idea why it doesn't work.
Can someone help me out? Have I missed something obvious? Thanks.
onkeydown. It works fine withonkeyup. – Felix Kling Jul 22 '12 at 20:58element.defaultValuein your script. In any case it's no help to me - I have to prevent it, because I don't want the other fields in my form to change! – Doin Jul 22 '12 at 21:39