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 - GET method | WebOdisha.in

AJAX Using jQuery - GET method

Load data from the server using a HTTP GET request

$.get("AjaxServer.php", function(result) {
    $("#destdiv").html(result);
});
webodisha.in