Using Jquery ajax post how would i show a message with what data is about to be posted.
$.ajax({
beforeSend: function (request) {
//something here
},
type: "POST",
url: "delete/process.php",
data: "delcustomerid="+ delcustomerid,
success: refreshTable
});