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 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.

share|improve this question
10  
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
what if there are two input text and not one. To which one it will bind? – user1199657 Jul 17 '12 at 10:27
1  
Actually it IS allowed meta.stackoverflow.com/questions/16930/… – Nakilon Sep 4 '12 at 11:07

14 Answers

up vote 392 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 ;)

share|improve this answer
62  
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
3  
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
5  
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 '12 at 10:49
16  
Problem with using keydown is that holding down enter will fire the event over and over again. if you attach to the keyup event, it will only fire once the key is released. – Steve Paulo Apr 13 '12 at 17:29
show 6 more comments

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();" />
share|improve this answer
2  
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
4  
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 '12 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 '12 at 9:04
2  
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 '12 at 15:35
15  
Inline-javascript leads to pain. pain leads to suffering... – Sam May 18 '12 at 9:59
show 2 more comments

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>
share|improve this answer
2  
Thanks for going back and answering your question, very helpful! – Mr. White Jan 8 '12 at 2:14
6  
e = e || window.event; // shortest way to get event – Victor Sep 20 '12 at 13:50

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.

share|improve this answer
4  
document.layers? Are you still supporting Netscape?!! – Victor Sep 20 '12 at 13:52
3  
yea have to support netscape... – Varun Sep 20 '12 at 14:53
this did it for me – Christian Vielma Apr 4 at 20:18

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

<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 standard behaviour, the Enter key should always call the submit button on a form.

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

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

share|improve this answer

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.

share|improve this answer
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.

share|improve this answer
This is really ugly. You don't need the javascript: prefix, and you should not write inline JS codes (mixing HTML and JS codes). – Sk8erPeter May 9 at 10:16

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();
    }
}
share|improve this answer
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.

share|improve this answer

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();" />
share|improve this answer

if you're interested in a more elegant behavior you might like this script.
In this script, if the user presses Enter he saves the changes,
if he presses Esc the input returns to the last enter press.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
    <script type="text/javascript">
      $(document).ready(function () {

        $('.subtitle_auto_ajax').keyup(function (event) {
          if (event.keyCode == 13) {
            // For Enter.
            // Your AJAX function here.
            // alert('enter, id: ' + event.srcElement.attributes.id.value);
            var id = event.srcElement.attributes.id.value;
            // alert($('#'+id).val());
            event.srcElement.defaultValue = $('#' + id).val();
          }

          if (event.keyCode == 27) {
            // For Escape.
            // Your AJAX function here.
            // alert('escape, id: ' + event.srcElement.attributes.id.value);
            // alert('PlaceholderInst: ' + event.srcElement.defaultValue)
            var id = event.srcElement.attributes.id.value;
            $('#' + id).val(event.srcElement.defaultValue);
          }
        });

      });
    </script>
  </head>

  <body>
    <input class="subtitle_auto_ajax" id="a1_text" name="a1.text" type="text" value="Humidity - Middle" />
    <input class="subtitle_auto_ajax" id="a2_text" name="a2.text" type="text" value="Stem" />
    <input class="subtitle_auto_ajax" id="a3_text" name="a3.text" type="text" value="Fruit - Middle" />
  </body>

</html>
share|improve this answer

For jquery mobile I had to do

$('#id_of_textbox').live("keyup", function(event) {
    if(event.keyCode == '13'){
    $('#id_of_button').click();
    }
});
share|improve this answer
.live is deprecated in jQuery 1.7. Is it still considered OK in jQuery Mobile? – Barmar Oct 30 '12 at 19:58

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.

share|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

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.