Hitting Enter/Return on Login Fails in Opera
If you enter your login details (and this is on Opera), and hit Enter to submit, I usually get a prompt to save my details but the login fails. The only way to login is to use the button instead.
1
person has this problem
I have this problem, too!
Tell me when someone solves it.
The more people who report this problem, the more it gets noticed.
The more people who report this problem, the more it gets noticed.
Create a customer community for your own organization
Plans starting at $19/month
-
Inappropriate?Hi Steve, due to the length of the list of fixes, Opera formatting will be a while. Opera browsing is less then 2% of the users.
Will keep it on the list and it will be tackled. -
Inappropriate?It's not a big problem though so no worries... it's only a small niggle in comparison to the other things going on, just a mouse click instead of a key-press.
I’m happy
-
Inappropriate?Ok, looked in to this problem a bit more... when you push enter/return in opera, it actually posts your login details via old fashioned request (i.e. i actually see all my login details in the address bar)... where as clicking on the button goes through validation and then uses javascript to create a POST request.
Off the top of my head (been a while since I've done this sorta stuff).. if you were to edit the FORM tag for the login with an onsubmit event that mimics the onclick event for your submit button, I think it should fix the problem.
<.form id="frmLoginPanel">
should maybe be something like
<.form id="frmLoginPanel" onsubmit="if($('#frmLoginPanel').valid()) { CC_Login_Auth(); return true} else {return false};">
... Above line is a bit messy and you may be better housing validation and boolean return in a single function so more along the lines of
<.form id="frmLoginPanel" onsubmit="return checkloginform()">
with a script like...
function checkloginform()
{
if($('#frmLoginPanel').valid())
{
CC_Login_Auth(); return true
}
else
{
return false
}
}
... there goes another rant :)
Steve
I’m silly
Loading Profile...



EMPLOYEE