AJAX Using jQuery - POST method
Load data from the server using a HTTP POST request
$.post("AjaxServer.php",{var1:value1, var2:value2 },function(result) {
$("#destdiv").html(result);
});
Load data from the server using a HTTP POST request
$.post("AjaxServer.php",{var1:value1, var2:value2 },function(result) {
$("#destdiv").html(result);
});