Hi.
I would like to be able to have modal dialog that pops up with an option to accept or deny the submission of the form. My form is an ajax form.
I have this piece of code that does this, however, the spinner is activated and the form is sort of inactivated after the user clicks cancel. Therefore, it is not possible to submit the form thereafter.
jQuery('.pricebid-form').submit(function() {
var c = confirm("Click OK to continue?");
return c;
});