Hi All,
When i hit the EnterKey on password field, at that time it has to redirect into the home page, but it not redirecting.Bel ow JS code work fine with all the browsers , Except IE11.
need help.
Thanks i advace.
When i hit the EnterKey on password field, at that time it has to redirect into the home page, but it not redirecting.Bel ow JS code work fine with all the browsers , Except IE11.
need help.
Thanks i advace.
Code:
<script language="JavaScript">
function myTranslate(event)
{
var event = event || window.event;
if(event== 13)
{
submitForm('', 'mainForm');
}
}
</script>
<form>
<input id = "password" maxlength="50" type = "password"
name = "password" width = "250px" onkeypress="JavaScript:myTranslate(event)"/>
</form>