Advertisement
Guest User

Kozlowska to kurwa

a guest
Dec 10th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset=utf-8" />
  4. <title>Ajax Test</title>
  5. </head>
  6. <body>
  7. <div id="response">AJAX</div>
  8. <input type="button" value="Load Ajax" onclick="runAjax()" />
  9. <script>
  10. function runAjax(){
  11. var xmlhttp = new XMLHttpRequest
  12. xmlhttp.onreadystatechange = function(){
  13. if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  14. document.getElementById("response").innerHTML = xmlhttp.responseText;
  15. }
  16. };
  17. xmlhttp.open("GET", "odpowiedz.txt", true);
  18. xmlhttp.send();
  19. }
  20. </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement