Progress...
10:50.28 - Wednesday 22nd December 2004 (Link to This Entry)
Working like crazy on the rush job, we're making some excellent progress here and I remain fairly confident that we can get everything done by January 5th and still have a nice Christmas period. Normal service will e resumed as soon as possible.
In the meantime, here's some fun JavaScript which will prevent a form submitting when Enter is pressed in a text field:
-
function testForEnter() {
if (event.keyCode == 13) {
event.cancelBubble = true;
event.returnValue = false;
}
}
