i have got a unique issue, i had put this script on body onload
<body onload="document.getElementById('User_Email').focus();">
this script will automatically place the mouse cursor in email text field when the page is loaded…but the problem iam facing now is…sometimes once we enter the username and password for the first time and after we click on login button ,cursor will move back to username textbox by removing the password,and if we enter the username and password for the second time it works fine…
i dont know why its happening,bcos it does not happen all the time .have any of you guys faced the same problem….
any solution for this???
Remove
onload="document.getElementById('User_Email').focus();"Fom
<body>tagAnd add
In your
<head>tag.