Im using jConfirm in my JSP page for canceling submit button click.
As following code, although i clicked cancel button, but not return, and proceed below.
Why and how ?
Or is there another problem ?
I tried by also jquery-ui-dialog, but result is same ignored cancel.
$("#dtdetailsubm").click(function() {
.....
jConfirm('Really post ?', 'Post confirmation', function (r){
if (r == false) {
return false;
}
});
.....
});