01.
$(
"#create"
).on(
'submit'
,
function
(event) {
02.
event.preventDefault();
03.
04.
if
($(
this
).parsley().isValid()) {
05.
06.
swal({
07.
title:
"ยืนยัน ?"
,
08.
type:
"warning"
,
09.
showCancelButton:
true
,
10.
cancelButtonText:
"ยกเลิก"
,
11.
confirmButtonText:
"ยืนยัน"
,
12.
closeOnConfirm:
false
13.
},
function
(isConfirm){
14.
if
(isConfirm){
15.
$(
this
).submit();
16.
}
17.
});
18.
}
19.
});