Guest User

Untitled

a guest
Jan 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. xmlhttp = new XMLHttpRequest();
  2. xmlhttp.onreadystatechange = function() {
  3. if (this.readyState == 4 && this.status == 200) {
  4. document.getElementById("listview").innerHTML = this.responseText;
  5. }
  6. };
  7. xmlhttp.open("GET", "./app/getresult.php, true);
  8. xmlhttp.send();
Add Comment
Please, Sign In to add comment