Deprecated: stripslashes(): Passing null to parameter #1 ($string) of type string is deprecated in /home/webodisha/public_html/includes/functions/common.php on line 116

Deprecated: stripslashes(): Passing null to parameter #1 ($string) of type string is deprecated in /home/webodisha/public_html/includes/functions/common.php on line 116
AJAX Using jQuery - POST method | WebOdisha.in

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);
});
webodisha.in