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 with an event of clicking the enter to submit the form, it is not working in IE

<form name="login" action="" method="post">
<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: if (window.event.keyCode == 13) login.submit(); else window.event.keyCode = null;"/></li>
</ul>
</form>

Here on submit button i have mention an event as onkeydown="javascript: if (window.event.keyCode == 13) login.submit(); else window.event.keyCode = null;"

This is not working in IE, can someone suggest me any solution for this or any alternative of solution i have applied for my requirement?

share|improve this question

3 Answers

up vote 2 down vote accepted

Any reason why you're not using a simple

<input type="submit">

?

It should enable the "enter to submit" behaviour in all browsers without having to use JavaScript at all.

share|improve this answer
+1 "Enter" to submit is default behavior inside text fields. – Adam Backstrom Oct 4 '10 at 10:19
@Adam yup. IIRC in IE, a "submit" button needs to be present for it to work, so adding that should do the trick – Pekka 웃 Oct 4 '10 at 10:20
I was looking for the way if i can make it happen by using "type="button""... – OM The Eternity Oct 4 '10 at 11:45
@OM it's certainly possible but then you need to put the event on the text fields, as said by others. Any special reason why you can't use submit? – Pekka 웃 Oct 4 '10 at 11:46
Just being Different!!!! – OM The Eternity Oct 5 '10 at 6:03
show 1 more comment

You should move the onkeydown event to the text fields rather than having it on the button control.

share|improve this answer

In addition to spinons answer you could observe the onkeydown of the whole form:

<form onkeydown="(function(event,form){if(event.keyCode == 13){form.submit();}})(event,this)" name="login" action="" method="post">
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.