Response title
This is preview!




function showConfirmation(title, text){
//this displays a jQuery Dialog form and returns true/false
return myjQueryConfirm(title, text);
}
function showConfirmation(title, text){
var res;
jConfirm(title, text, function (r) { res = r;});
return res;
}
$.ajax({
....
beforeSend: function () {
$("#saving").dialog({
bgiframe: true,
modal: true,
resizable: false
}); }
...
$("#saving").html("Data saved");
$('#saving').dialog('option', 'buttons',
{ "Ok": function() {
$(this).dialog("close");
}
});
© 2013 jQuery Foundation
Sponsored by
and others.
