vote up 7 vote down star
1

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: I'd like to accept my own answer below, but since that is now allowed I will accept the next best solution.

flag

11 Answers

vote up 10 vote down check

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|flag
Yeah I almost did that. I guess it's just a personal preference thing...I like the more modular approach. ;) – ziondreams Sep 30 '08 at 22:01
vote up 0 vote down

Microsoft doesn't support document.getElementById( ... );

I think you would have to use document.elements[ ... ]; but I'm not 100%

link|flag
Here... there's a function posted on this page that wraps it up. // javascript-coder.com/javascript-form/… function getElement (id) { if (document.getElementById) { return document.getElementById(id); } else if (document.all) { return window.document.all[id]; } else if (document.layers) { return window.document.layers[id]; } } – Kevin Abate Oct 29 at 9:44
vote up -1 vote down

Microsoft JScript runtime error: 'document.getElementById(...)' is null or not an object i am getting this error can help me

link|flag
vote up 1 vote down

I think this is the best solution of all -

https://developer.mozilla.org/En/DOM:element.dispatchEvent

link|flag
vote up 1 vote down

Is this some kind of a primitive post, all published at a time when IE ruled the world? Dude, dude, dude... "click()" works only on IE and if u wanna make ur thing work, u cannot go for that option!!!

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down
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... found it on the net... no idea if there's a better way or not in plain 'ol javascript.

link|flag
vote up 4 vote down

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 (window.event) { e = window.event; }
		if (e.keyCode == 13)
		{
			document.getElementById('btnSearch').click();
		}
	}
	</script>
link|flag
vote up 3 vote down

Well, 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 in plain JS, but maybe someone else could extrapolate this out?

P.S. use jQuery ;)

link|flag
Three cheers for jQuery – Kevin Albrecht Oct 27 '08 at 17:11
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
Alas, I can't. I updated the question. But thanks for the suggestion! :) – ziondreams Sep 30 '08 at 21:42

Your Answer

Get an OpenID
or

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