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 want a jQuery form submit handler to respect any previous submit handlers, including ones added with onsubmit.

I'm trying to detect the previous handler's return value but can't seem to do it:

<form><input type="submit" /></form>
<script type="text/javascript">
$('form')[0].onsubmit = function() { return false; }; // called first
$('form').submit(function(e) {
  console.log(e.result); // undefined
  console.log(e.isDefaultPrevented()); // false
  console.log(e.isPropagationStopped()); // false
  console.log(e.isImmediatePropagationStopped()); // false
});
</script>

Is there a way to do this?

share|improve this question

1 Answer

up vote 0 down vote accepted

I found one non-jQuery way to do this:

var form = $('form')[0];
var old_onsubmit = form.onsubmit;
form.onsubmit = function() {
  if ($.isFunction(old_onsubmit)) {
    if (old_onsubmit() === false) {
      console.log("false");
      return false;
    }
  }
  console.log("true");
  return true;
}

But I'd much prefer detecting this from the jQuery-bound submit handler

share|improve this answer
<sigh> no suggestions for a few weeks now, accepting my own answer :( – orip Jun 20 '10 at 18:52

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.