Skip to content

Instantly share code, notes, and snippets.

@shiv122
Last active August 11, 2021 11:46
Show Gist options
  • Save shiv122/91582bc6f4c48957fd578aa92798e993 to your computer and use it in GitHub Desktop.
Save shiv122/91582bc6f4c48957fd578aa92798e993 to your computer and use it in GitHub Desktop.
<script>
function loadDoc() {
var data = new FormData();
data.append('id', id);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
xhttp.open("POST", "fileName.php", true);
xhttp.send();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment