torjanX

index.php

Aug 2nd, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <button type="button" id="btn" onclick="loadDoc()">Request data</button>
  6.  
  7. <p id="demo"></p>
  8.  
  9.  
  10.  
  11. <script>
  12. document.getElementById("btn").click();
  13. function loadDoc() {
  14.   var xhttp = new XMLHttpRequest();
  15.   xhttp.onreadystatechange = function() {
  16.     if (this.readyState == 4 && this.status == 200) {
  17.      document.getElementById("demo").innerHTML = this.responseText;
  18.     }
  19.   };
  20.   xhttp.open("GET", "test.php", true);
  21.   xhttp.send();
  22.  setTimeout(2);
  23. document.getElementById("btn").click();
  24. }
  25. </script>
  26.  
  27. </body>
  28. </html>
Add Comment
Please, Sign In to add comment