I want to retain the conventional 'form submits when i press Enter' behavior because users are familiar with. But by reflex, they often hit enter when they finish with a text input box - but before they are actually done with the complete form.
I'd like to hijack the Enter key only when then focus is on a certain class of input.
Looking Related Questions this looks like what I'm looking for:
if (document.addEventListener) {
document.getElementById('strip').addEventListener('keypress',HandleKeyPress,false);
} else {
document.getElementById('strip').onkeypress = HandleKeyPress;
}
but the if (document.addEventListener) { is unfamiliar.

addEventListener()syntax for adding event listeners, there will be a function object calledaddEventListenerin every DOM node object (and specifically, in the document object). A function object becomes true when converted to a boolean, so the first branch runs. If the browser does not understand the addEventListener syntax,document.addEventListenerwill be undefined (which converts to false) and the fallback code in the second branch gets executed. – Tgr May 8 '10 at 12:34