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 bog-standard login form - an email text field, a password field and a submit button on an AIR project that's using HTML/jQuery. When I hit Enter on the form, the entire form's contents vanish, but the form isn't submitted. Does anyone know if this is a Webkit issue (Adobe AIR uses Webkit for HTML), or if I've bunged things up?

I tried:

$('.input').keypress(function (e) {
  if (e.which == 13) {
    $('form#login').submit();
  }
});

But that neither stopped the clearing behavior, or submitted the form. There's no action associated with the form - could that be the issue? Can I put a javascript function in the action?

share|improve this question
2  
Do you really have a class="input" attribute on your <input...? Seems like it should be $('input').keypress... – NexusRex Jan 10 '12 at 3:57
The classes are generated programmatically by a CMS. Other than that, however, scoping it to $('input') would affect every input on the page, regarless of whether I wanted the behavior or not. Sorry it offends your sensibilities. – b. e. hollenbeck Feb 16 '12 at 15:42
7  
Sensibilities not offended in the least. Just thought it might have been an oversight that lead to the problem. Carry on. – NexusRex Feb 22 '12 at 8:15
FYI: Your accepted answer is not entirely accurate. Refer to my answer below. – NoBrainer Sep 24 '12 at 16:17

10 Answers

up vote 110 down vote accepted

In addition to return false as Jason Cohen mentioned. You may have to also preventDefault

e.preventDefault();
share|improve this answer
This is wrong. Refer to my answer below. – NoBrainer Jan 7 at 22:53
2  
as @NoBrainer said, this is wrong: return false in an event managed by jQuery automatically call e.preventDefault() – Riccardo Galli Apr 5 at 12:49

Return false to prevent the keystroke from continuing.

share|improve this answer

Don't know if it will help, but you can try simulating a submit button click, instead of directly submitting the form. I have the following code in production, and it works fine:

    $('.input').keypress(function(e) {
        if(e.which == 13) {
            jQuery(this).blur();
            jQuery('#submit').focus().click();
        }
    });

Note: jQuery('#submit').focus() makes the button animate when enter is pressed.

share|improve this answer
$('.input').keypress(function (e) {
  if (e.which == 13) {
    $('form#login').submit();
    return false;    //<---- Add this line
  }
});

NOTE: You accepted bendewey's answer, but it is incorrect with its description of e.preventDefault(). Check out this stackoverflow answer: event.preventDefault() vs. return false

Essentially, "return false" is the same as calling e.preventDefault and e.stopPropagation().

share|improve this answer
1  
Only this one worked as I wanted. – PedroGabriel Mar 22 at 13:54

Is there any reason you have to hook and test for the enter key?

Couldn't you simply add a

<input type="submit" />

to your form and have it naturally be submitted when enter is pushed? You could even then hook the form's onsubmit action and call a validation function from there if you wanted...

You could even use the onsubmit as a test to see if your form is being submitted, but it won't work if you call form.submit().

share|improve this answer
Totally agree. My preference would always be to use the native functionality of the browser (inputs of type=submit natively respond to an enter key press) rather than adding further kludged up scripts.. – Aaron Jan 17 '11 at 23:10
Problem is, what if you are doing ajax stuff and there isn't an actual postback to the server, but you want the UI to behave as the user expects? – lorddev Oct 25 '12 at 20:46
@lorddev I'm not sure I understand your concern. If you are performing an AJAX action then by definition you are posting data to the server and waiting for a response. If you are doing a lot of client side work you can still hook the onsubmit event of the form and perform any UI actions needed, even if you don't communicate with the server. The event will still be fired in either case. The point of my answer to this question is to take advantage of standard form behavior by adding a submit button. – Zack The Human Oct 27 '12 at 23:19
Indeed... I had overlooked the whole return false; thing. – lorddev Oct 29 '12 at 5:49

You can also simply add onsubmit="return false" to the form code in the page to prevent the default behaviour.

Then hook (.bind or .live) the form's submit event to any function with jQuery in the javascript file.

Here's a sample code to help:

HTML

<form id="search_form" onsubmit="return false">
   <input type="text" id="search_field"/>
   <input type="button" id="search_btn" value="SEARCH"/>
</form>

Javascript + jQuery

$(document).ready(function() {

    $('#search_form').live("submit", function() {
        any_function()
    });
});

This is working as of 2011-04-13, with Firefox 4.0 and jQuery 1.4.3

share|improve this answer

Also to maintain accessibility, you should use this to determine your keycode:

c = e.which ? e.which : e.keyCode;

if (c == 13) ...
share|improve this answer
3  
This is already normalized by jQuery – Blaise Oct 25 '10 at 18:08

I use now `$("form").submit(function(event)' At first I added an eventhandler to the submit button which produced an error for me.

share|improve this answer

Here's a way to do this as a JQuery plugin (in case you want to re-use the functionality):

$.fn.onEnterKey =
    function( closure ) {
        $(this).keypress(
            function( event ) {
                code = event.keyCode ? event.keyCode : event.which;

                if ( code == 13 ) {
                    closure();

                    return false;
                }
            } );
    }

Now if you want to decorate an with this type of functionality it's as simple as this:

$('#your-input-id').onEnterKey(
    function() {
        // Do stuff here
    } );
share|improve this answer

//try this code below; //hope it can help;

    var form =  document.formname;

if($(form).length > 0)
{
    $(form).keypress(function (e){
        code = e.keyCode ? e.keyCode : e.which;
          if(code.toString() == 13) 
          {
             formsubmit();
          }
    })
}
share|improve this answer
3  
This is mixing jquery with vanilla javascript in an uncomfortable way, and includes a really odd cast which just confuses things – moopet Sep 20 '12 at 18:39

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.