showing results for - "xhr open method"
Samy
11 Nov 2020
1xhttp.open("GET", "ajax_info.txt", true);
2xhttp.send();
3
4//open(method, url, async)	
5//Specifies the type of request
6//method: the type of request: GET or POST
7//url: the server (file) location
8//async: true (asynchronous) or false (synchronous)