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

Possible Duplicate:
HTML: Submitting a form by pressing enter without a submit button

How can I submit a form with just the Enter key on a text input field, without having to add a submit button?

I remember this worked in the past, but I tested it now and the form doesn't get submitted unless there's a submit-type input field inside it.

share|improve this question

marked as duplicate by Ben, ThinkingStiff, Alex, outis, gideon Jan 24 '12 at 4:23

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 22 down vote accepted
$("input").keypress(function(event) {
    if (event.which == 13) {
        event.preventDefault();
        $("form").submit();
    }
});
share|improve this answer

Change #form to your form's ID

$('#form input').keydown(function(e) {
    if (e.keyCode == 13) {
        $('#form').submit();
    }
});

Or alternatively

$('input').keydown(function(e) {
    if (e.keyCode == 13) {
        $(this).closest('form').submit();
    }
});
share|improve this answer
6  
You can bind the keydown event on just the form, instead of binding the individual inputs: the keydown event will propagate up to the form. – Beejamin Jan 24 '12 at 3:32

Jay Gilford's answer will work, but I think really the easiest way is to just slap a display: none; on a submit button in the form.

share|improve this answer
2  
This doesn't work for me, I have to set visibility: hidden; instead. – Martin Andersson Nov 22 '12 at 9:27

@JayGuilford's answer is a good one, but if you don't want a JS dependency, you could use a submit element and simply hide it using display: none;.

share|improve this answer

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