I'm using php to pass a login form when required, and here is the code:
$htmlForm = '<form id="frmlogin">'.
'<label>';
switch(LOGIN_METHOD)
{
case 'both':
$htmlForm .= $ACL_LANG['USERNAME'].'/'.$ACL_LANG['EMAIL'];
break;
case 'email':
$htmlForm .= $ACL_LANG['EMAIL'];
break;
default:
$htmlForm .= $ACL_LANG['USERNAME'];
break;
}
$htmlForm .= ':</label>'.
'<input type="text" name="u" id="u" class="textfield" />'.
'<label>'.$ACL_LANG['PASSWORD'].'</label>'.
'<input type="password" name="p" id="p" class="textfield" />'.
'<center><input type="submit" name="btn" id="btn" class="buttonfield" value="Sign in to extranet" /></center>'.
'</form>';
return $htmlForm;
The problem is, is that when the user hits enter in IE8, the form does not submit, and the user is forced to hit the submit button.
How do I rectify this?
Thanks, ct2k7
submitevent gets run, but even though it returns true, the submit doesn't happen! This is disastrous because that listener then disables the form to prevent duplicate submission, so IE users who hit enter are then unable to submit at all. My solution is that for IE users, if they press enter in a form input, I catch that and return false - do nothing. They must click to submit. (Messing with visibility isn't an option here, since the form is loaded via AJAX.) – Nathan Long Jan 6 '11 at 17:39