Home >>Ajax Tutorial >Ajax Send Request Server

Ajax Send Request to Server

AJAX - Send a Request To a Server

The XMLHttpRequest object is used to exchange data with a server.

Send a Request To a Server

To send a request to a server, we use the open() and send() methods of the XMLHttpRequest object

xmlhttp.open("GET", "load_data.txt", true);
xmlhttp.send();
Method Description
open(method, url, async) Specifies the type of request
method: the type of request: GET or POST
url: the server (file) location
async: true (asynchronous) or false (synchronous)
send() Sends the request to the server(Used for Get Method)

No Sidebar ads