Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var xhttp = new XMLHttpRequest();
  2. xhttp.onreadystatechange = function() {
  3. if (this.readyState == 4 && this.status == 200) {
  4. console.log(this.responseText);
  5. }
  6. };
  7. xhttp.open("GET", "https://uae.souq.com/ae-en/account.php", true);
  8. xhttp.withCredentials = true;
  9. xhttp.send();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement