I have one text input and one button (see below). How can I use JavaScript to trigger the button's click event when the Enter key is pressed inside the text box?

There is already a different submit button on my current page, so I can't simply make the button a submit button. And, I only want the enter key to click this specific button if it is pressed from within this one text box, nothing else.

<input type="text" id="txtSearch" />
<input type="button" id="btnSearch" value="Search" onclick="doSomething();" />

Update: Accepting one's own answer is now allowed, but the jQuery solution is probably just better. If you do not have access to jQuery for some reason, see my own answer below.

link|improve this question
8  
Did you mean "not allowed"? Because your sentence makes more sense that way, even though accepting your own answer IS actually now allowed.... – Lord Torgamus Apr 22 '10 at 13:59
Yes, I did mean "not allowed". Thanks. – kdenney Jan 18 '11 at 22:27
feedback

13 Answers

up vote 182 down vote accepted

In jQuery, this would work:

$("#id_of_textbox").keyup(function(event){
    if(event.keyCode == 13){
        $("#id_of_button").click();
    }
});

Sorry, I don't know how to do it in plain JavaScript, but maybe someone else could extrapolate this out?

P.S.: use jQuery ;)

link|improve this answer
27  
Three cheers for jQuery – Kevin Albrecht Oct 27 '08 at 17:11
Wow, it's been a while since I logged in here. I have since learned jQuery and regret ever writing the code to do this manually, so you get the answer! :) – kdenney Jan 18 '11 at 22:26
2  
It is probably a better practice to query event.which than event.keyCode or event.charCode, see developer.mozilla.org/en/DOM/event.charCode#Notes – William Niu Mar 25 '11 at 0:58
@William: As he's using keyup, and your link says "charCode is never set in the keydown and keyup events. In these cases, keyCode is set instead.", it doesn't matter. That said, though, I don't think keyup is the right event for the job (keydown, I would have thought; that's how a button behaves when it has focus, for instance). – T.J. Crowder Jun 2 '11 at 14:34
2  
keydown not keyup is the better event to use. Also, if you are using asp.net you will have to return false at the end to stop asp.net from still intercepting the event. – maxp Jan 13 at 10:49
show 2 more comments
feedback

Then just code it in!

<input type="text" id="txtSearch" onkeydown="if (event.keyCode == 13) document.getElementById('btnSearch').click()"/>
<input type="button" id="btnSearch" value="Search" onclick="doSomething();" />
link|improve this answer
1  
Yeah I almost did that. I guess it's just a personal preference thing...I like the more modular approach. ;) – kdenney Sep 30 '08 at 22:01
if you need to stop the form submission:onkeydown="if (event.keyCode == 13) {document.getElementById('btnSubmit').click();event.returnValue=false;event.canc‌​el=true;}" – Timothy Chung Apr 9 at 11:26
What about cross-browser compatibility? Does it work in all common browsers? (I see IE6 as common browser as it has still more than 5% of used browsers worldwide) – SimonSimCity Apr 17 at 9:04
This worked for me due to fact that the inline method, instead of calling function with similar code in it, allows you to return false on the call and avoid postback. In my case the "click" method invokes a __doPostback async call and without the "return false;" would just reload the page. – Dave Apr 23 at 15:35
Inline-javascript leads to pain. pain leads to suffering... – Sam May 18 at 9:59
feedback

Figured this out:

    <input type="text" id="txtSearch" onkeypress="searchKeyPress(event);" />
    <input type="button" id="btnSearch" Value="Search" onclick="doSomething();" />

    <script>
    function searchKeyPress(e)
    {
        // look for window.event in case event isn't passed in
        if (typeof e == 'undefined' && window.event) { e = window.event; }
        if (e.keyCode == 13)
        {
            document.getElementById('btnSearch').click();
        }
    }
    </script>
link|improve this answer
Thanks for going back and answering your question, very helpful! – Dennis Jan 8 at 2:14
feedback

In plain JavaScript,

if (document.layers)
    document.captureEvents(Event.KEYDOWN);
document.onkeydown =
    function (evt) {
        var keyCode = evt ? (evt.which ? evt.which : evt.keyCode) : event.keyCode;
        if (keyCode == 13) { 
            //For enter.
            //Your function here.
        }
        if (keyCode == 27) { 
            //For escape.
            //Your function here.
        }
        else
            return true;
    };

I noticed that the reply is given in jQuery only, so I thought of giving something in plain JavaScript as well.

link|improve this answer
feedback

Make the button a submit element, so it'll be atuomatic.

<input type="submit" id="btnSearch" value="Search" onclick="return doSomething();" />

Note that you'll need a form element containing the input fields to make this work. (thanks Sergey Ilinsky)

It's not a good practice to redefine standar behaviour, the Enter key should always call the submit button on a form.

link|improve this answer
Alas, I can't. I updated the question. But thanks for the suggestion! :) – kdenney Sep 30 '08 at 21:42
feedback

In addition to AlbertEin's proposal, you would indeed need to add a surrounding form element (if you do not have one yet)

link|improve this answer
feedback

Although, I'm pretty sure that as long as there is only one field in the form and one submit button, hitting enter should submit the form, even if there is another form on the page.

You can then capture the form onsubmit with js and do whatever validation or callbacks you want.

link|improve this answer
feedback
onkeydown="javascript:if (event.which || event.keyCode){if ((event.which == 13) || (event.keyCode == 13)) {document.getElementById('btnSearch').click();}};"

This is just something I have from a somewhat recent project... I found it on the net, and I have no idea if there's a better way or not in plain old JavaScript.

link|improve this answer
feedback

This onchange attempt is close, but misbehaves with respect to browser back then forward (on Safari 4.0.5 and Firefox 3.6.3), so ultimately, I wouldn't recommend it.

<input type="text" id="txtSearch" onchange="doSomething();" />
<input type="button" id="btnSearch" value="Search" onclick="doSomething();" />
link|improve this answer
feedback
event.returnValue = false

Use it when handling the event or in the function your event handler calls.

It works in Internet Explorer and Opera at least.

link|improve this answer
feedback

To trigger a search every time the enter key is pressed, use this:

$(document).keypress(function(event) {
    var keycode = (event.keyCode ? event.keyCode : event.which);
    if (keycode == '13') {
        $('#btnSearch').click();
    }
}
link|improve this answer
feedback

For jquery mobile I had to do

$('#id_of_textbox').live("keyup", function(event) {
    if(event.keyCode == '13'){
    $('#id_of_button').click();
    }
});
link|improve this answer
feedback

This also might help, a small JavaScript function, which works fine:

<script type="text/javascript">
function blank(a) { if(a.value == a.defaultValue) a.value = ""; }

function unblank(a) { if(a.value == "") a.value = a.defaultValue; }
</script> 
<input type="text" value="email goes here" onfocus="blank(this)" onblur="unblank(this)" />

I know this question is solved, but I just found something, which can be helpful for others.

link|improve this answer
The question was for triggering a button click with the enter key in a textbox. Your solution is for a "watermark" type of functionality. – kdenney Sep 14 '11 at 13:23
feedback

protected by Jeff Atwood Jun 7 '10 at 21:35

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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