Guest User

Untitled

a guest
Jan 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     $('#Button').click(function(e){
  3.         e.preventDefault();
  4.         jConfirm('Are you sure you want to submit the form?','Really Submit',
  5.             function(ans){
  6.                 if(ans) {
  7.                     $("#testForm").submit();
  8.                 }
  9.              })
  10.             });
  11.         return false;
  12. });
Add Comment
Please, Sign In to add comment