$('#js_eligibilty_discard').on('click',
function(e) {
$.DirtyForms.choiceContinue = true;
$("#test").dialog('close');
$("#js-ErrorPopup").dialog('close');
$('body').dialogPartialLoader('Processing');
$.ajax({
type: "POST",
url: GlobalVars['app_url'] + "/web/xyz/cancel?xyz=${param.xyz}",
cache: false,
success: function(data) {
parent.window.location.href = GlobalVars["app_url"] + "/individual/findPlans"
},
error: function(data) {
$('body').dialogClose();
alert(data.statusText);
}
});
return false;
$.DirtyForms.choiceCommit(e);
});
ダーティ フォームのデフォルト ポップアップが表示されます。