I have a confirm step in one of my pages.

Desired action:

  • user clicks 'submit' and an AJAX request is made that does the appropriate action and returns a confirm dialog

  • user 'confirms' and then the form is submitted using a standard post.

So for the first part I'm fine using the jQuery form plugin:

$('form').ajaxForm(...options...);

For the second part I'd like to submit the form again, but non-ajax. Basically I want to do this:

$('form').submit();

And have it do an actual browser post. The problem is that $('form').submit() just triggers the ajax submit.

Is there a way to use the form for both purposes?

link|improve this question

1  
$('forms-submit-button').click() ..does that work , for the second submit? – Surya Jun 11 '09 at 14:26
yes that works... interesting, but works and I'm happy. – eyston Jun 11 '09 at 14:41
feedback

5 Answers

up vote 2 down vote accepted
$('forms-submit-button').click()

..does that work , for the second submit?

:) :)

link|improve this answer
feedback

Can't you just unregister the submit event handler after you've ajax-posted the results? Why do you need to post the same data twice, by the way? If the data haven't changed between the Ajax post and the regular one, why is the regular one needed?

link|improve this answer
Two requirements: 1) a confirm step is needed 2) I have to use the existing db So I'm doing 99% of the same work in both requests, but only the 'real' request persists it to the database. Ideally I would save the work from the first request and the second request would just need to reference that saved work, but a) I don't want to rely on session and b) I can't create a new table for persistence of the request. – eyston Jun 11 '09 at 14:46
feedback

You can try to change a value in the form (se some hidden value to 1), do another ajax request and finally do a redirect. It's not the same but it should work. Note that it's very strange to submit the same data twice though..

link|improve this answer
Its a confirm step ... it does everything but save it to the database, so its the exact same data. – eyston Jun 11 '09 at 14:31
and I still don't get why you should post twice... – Keeper Jun 11 '09 at 15:17
feedback

Answered by Surya as a comment (if you check this question again please post the answer so I can mark it!)


$('forms-submit-button').click() ..does that work , for the second submit?

link|improve this answer
feedback
form onsubmit='ajaxCheck();'
...  
/form script var ajaxCheck = function() { //do check return confirm(); // if ok form submit normaly / if cancel form doesn't submit } /script

or something with a flag:

var flag = true;

var firstCheck = function()
{
     if( flag )
     {
       //do the ajax Call which will fire an event,
       // let's call it onData
       $.post(url,{param1:val1,...,paramN:valN},onData);
       return false;
     }
     return true;
}

var onData = function (data)
{
       flag = !confirm(...); 
      //if user click ok and try to re-submit the form
      //this time will just go
}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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