Real quick thing which was getting the enter key to be handled on press in an input/textbox… though probably other things.
goog.events.listen(element, goog.events.EventType.KEYPRESS, function(a) { if(a.keycode === 13) { doSomething(); } });
This assumes that 13 is the universal id for the enter key. Not sure if there is a case of browser dependent key codes.
Nice find .. Never knew about it. Thnx.
Rather than hard-coding 13, you can use goog.events.KeyCodes.ENTER