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.

If i submit form in such way:

HTML

<form id="form" name="form" action="test_url">
  <input type="text" name="test" value="">
  <input type="button" onclick="this.form.submit" value="submit">
</form>

jQuery

$('#form').submit(function() {
  alert('ok');
  return false;
});

Can I prevent submission with jQuery?

share|improve this question

2 Answers

$('#form').submit(function(e) {
  e.preventDefault();
  alert('ok');
});

DEMO

passing event argument (here, e) to submit callback you can stop form submission using .preventDefault() method.

From jQuery doc about .preventDefault():

If this method is called, the default action of the event will not be triggered.

Note

Change

<input type="button" onclick="this.form.submit" value="submit">

to

<input type="submit" value="submit">
share|improve this answer

yes, just passing the event along with the handler and using preventDefault() method

$('#form').submit(function(evt) {
   evt.preventDefault();
   alert('ok');
});

Reference: http://api.jquery.com/event.preventDefault/

share|improve this answer

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.