Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. var shouldCancelSubmit = false;
  2. $("#testForm").submit( function( event ) {
  3. jConfirm('Are you sure you want to submit the form?','Really Submit',
  4. function(ans){
  5. shouldSubmit = ans;
  6. })
  7. if ( !shouldSubmit ) {
  8. event.preventDefault();
  9. }
  10. });
Add Comment
Please, Sign In to add comment