I have a bog-standard login form - an email text field, a password field and a submit button on an AIR project that\'s using HTML/jQuery. When I hit Enter on the form, the
Also to maintain accessibility, you should use this to determine your keycode:
c = e.which ? e.which : e.keyCode; if (c == 13) ...