Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a normal page with a login button. On clicking the login button, I use jQuery to bring up a hidden overlay layer, which contains a login form. The overlay layer is fixed positioned. When I press Enter no matter what is focused or where is mouse cursor s the the moment, the overlay layer is gone, revealing the normal page. So what is happening here? Does it have to do which form dfault button or something? But I do not seem to see any change in my normal page except the overlay is gone.

share|improve this question
Is there a cancel button in your login overlay? It could be defaulted to that as the button to click when you hit enter. It is kind of hard to tell without knowing what your overlay looks like. – Josh Mein Jul 28 '12 at 1:56
1  
My guess is that by pressing ENTER the page gets reloaded and thereby returned to its initial state. Do you submit the login via Ajax? – Šime Vidas Jul 28 '12 at 1:58
@Šime Vidas: Hi that was what happened! Is that a reload or a postback? Why did that happen? Because of the default button? What do I do to remove any default button? Thanks. – Aperture Jul 28 '12 at 2:02
you need to focus on the button using onFocus listener else it will be reloading everytime you press enter – Shivam Shah Jul 28 '12 at 2:04
@Aperture It's a submit I believe. The login form gets submitted. Why do you want to prevent this behavior? It is expected that the user will first fill in the login information, and then press ENTER to submit the form. – Šime Vidas Jul 28 '12 at 2:07
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.