Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a login form as below, I have tried doing this by onkeydown event, but i need this to work only for enter key..

<form action="login.php" method="post" name="login">
<div class="login-form">
                        <ul>
                            <li class="col1">E-mail Address</li>
                            <li class="col2"><input name="email_address" type="text" class="textfiled" /></li>
                            <li class="col1">Password</li>
                            <li class="col2"><input name="password" type="password" class="textfiled" /></li>
                            <li class="col1"></li>
                            <li class="col2"><input name="signin" type="button" class="signin-btn" onclick="javascript: login.submit();" onkeydown="javascript: login.submit();"/></li>

                        </ul>
                   </div>
</form>

How can i do this?

share|improve this question

2 Answers

up vote 1 down vote accepted

Try like this:

<li class="col2"><input name="signin" type="button" class="signin-btn" onclick="javascript: login.submit();" onkeydown="javascript: if (window.event.keyCode == 13) login.submit(); else window.event.keyCode = null; "/></li>
share|improve this answer
THANKS MANNN u GAVE ME wHAT I WANTED...... – OM The Eternity Oct 2 '10 at 8:16

You can just change your signin button to type="submit".

<input name="signin" type="submit" class="signin-btn" value="Submit" />

No need for all those onclick handler.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.