Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.75 KB | None | 0 0
  1. <html>
  2.     <body>
  3.             <script>
  4.                 var xhttp = new XMLHttpRequest();
  5.                 xhttp.onreadystatechange = function() {
  6.                     if (this.readyState == 4 && this.status == 200) {
  7.                    // Typical action to be performed when the document is ready:
  8.                    document.getElementById("demo").innerHTML = xhttp.responseText;
  9.                     }
  10.                 };
  11.                 xhttp.open("GET", "http://newton.newtonsoftware.com/career/CareerHome.action?clientId=8a7883d06a291643016a2c7ff86200ef&parentUrl=http%3A%2F%2Fwww.globalmgtsolutions.com%2Fcareers-2%2F&gns=");
  12.                 xhttp.send();
  13.             </script>
  14.                
  15.         <div id="demo" > </div>
  16.     </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement