Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a basic form with a search input and a submit button within. When focus takes place in the input, the keyboard is displayed as expected. When I press the button, the form submit event occurs, in which I call event.preventDefault() and instead make an ajax call. However, when I press the search button on the keyboard, the keyboard just hides and no submit event occurs.

Why doesn't the form submit when I press search on the keyboard? How can I trigger this event to happen via the keyboard search button?

Thanks.

share|improve this question

2 Answers

up vote 2 down vote accepted

The keyboard search button must be bound to a keypress event and has the keycode of 13.

Basically, listen to keypress events and return all calls except for e.which === 13

$('input').on('keypress', function ( e ) {
    if ( e.which !== 13 ) {
        return;
    }

    // ajax code
}
share|improve this answer

This is supposed to work. There must be something else going on in your code.

From this question:

<form action="#" onsubmit="return false;">
  <input id='SearchTextBox' type="search"/>
  <input id='SearchButton' type="button" value="Search" />  
</form>
share|improve this answer
I'm not looking to change the text. In fact, the text Search is exactly what I want. It doesn't submit the form when pressed. – Trevor Jun 22 '12 at 19:58
It's a simple form submission. The event isn't firing at all with the keyboard. – Trevor Jun 22 '12 at 20:02
@Trevor: I did post the link to tell you about changing the text. Please look at the link again. The only example describes exactly what you want, and discusses ajax submission. – geon Jun 22 '12 at 20:34
I'm not asking anything about ajax or changing text. – Trevor Jun 22 '12 at 20:52
I DO NOT think you want the text changed. The link has an example showing code doing exactly what you want. To make ajax work, they use .preventDefault(), thats why it's relevant. – geon Jun 23 '12 at 19:24
show 2 more comments

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.