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.

How do I make this submit on pressing the enter key? I want to completely remove the submit button.

HTML

<form class="iform">
<input id='input1' name='input1'/>
<input type='button' value='GO!' id='submit' onclick='onSubmit()' />
</form>

JS

$('#submit').click(function() { 
$('#slider').anythingSlider($("#input1").val()); 
});
share|improve this question
You should remove onclick='onSubmit()' for sure – mplungjan Jan 21 '12 at 17:57

5 Answers

up vote 3 down vote accepted

Very simple since you have only one field

EITHER

<form class="iform" id="iform">
<input id='input1' name='input1'/>
<input type='submit' value='GO!'  />
</form>

OR even

<form class="iform" id="iform">
<input id='input1' name='input1'/>
</form>

JS in either case

$('#iform').submit(function(e) {   
  $('#slider').anythingSlider($("#input1").val());
  e.preventDefault(); 
});
share|improve this answer
thank you so much :) – Blainer Jan 21 '12 at 18:08

Hitting "enter" while focused in the text field will already submit the form, you don't actually need the submit button (look at Stack Overflow's "search" form at the top right of this page for example). You just might need to change your javascript to listen to the submit event instead:

$('form').submit(function() { 
   $('#slider').anythingSlider($("#input1").val()); 
});

If you want the form submitted when someone presses enter regardless of where the focus is, I would suggest against it. It's extremely confusing behavior and can easily be triggered by accident.

share|improve this answer
You must cancel the submit or the page will change – mplungjan Mar 12 at 10:59

Try this:

$('#formId').keypress(function(e){
      if(e.which == 13)
      $('#slider').anythingSlider($("#input1").val());            }
     return false;
      });
share|improve this answer

a normal form is automatically submitted when pressing enter.

<form id="form1" action="test.php">
    <input type="text" name="input1" />
</form>

this should work fine, but it may not validate.

If you want to submit your form in javascript, you can use the .submit() function.

document.forms["form1"].submit();

or jQuery

$("#form1").submit();
share|improve this answer

use this

<input type="submit" style="display:none;">
share|improve this answer
1  
Not quite conceptually. – Lion Jan 21 '12 at 17:54

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.