Skip to content

Instantly share code, notes, and snippets.

@nimaa77
Created November 8, 2018 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nimaa77/ac80893194c5ad58b534858743d48060 to your computer and use it in GitHub Desktop.
Save nimaa77/ac80893194c5ad58b534858743d48060 to your computer and use it in GitHub Desktop.
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
xhttp.open("POST", "demo_post.asp", true);
xhttp.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment