Xhr Post Send

[Solved] Xhr Post Send | Vb - Code Explorer | yomemimo.com
Question : xmlhttp js post request

Answered by : zygimantas-jasiunas

var xhr = new XMLHttpRequest();
xhr.open("POST", '/url', true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.onreadystatechange = function() { // Call a function when the state changes. if (this.readyState === XMLHttpRequest.DONE && this.status === 200) { // Request finished. Do processing here. }
}
xhr.send("name=Hello&id=world");

Source : | Last Update : Tue, 02 Jun 20

Question : xhr post send

Answered by : splendid-shrew-5hv5uldjm429

var xhr = new XMLHttpRequest();
var params = 'field1='+postfield1+'&field2='+postfield2;
xhr.open('POST', 'http://exmaple.com', true);
//Send the proper header information along with the request
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhr.onload = function() {//Call a function when the state changes. if(xhr.status == 200) { alert(this.responseText); }
}
xhr.send(params);

Source : https://stackoverflow.com/questions/9713058/send-post-data-using-xmlhttprequest | Last Update : Wed, 22 Jul 20

Answers related to xhr post send

Code Explorer Popular Question For Vb