1
0

log.html 247 B

123456789
  1. <script type="text/javascript">
  2. function httpGet(theUrl)
  3. {
  4. var xmlHttp = new XMLHttpRequest();
  5. xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
  6. xmlHttp.send( null );
  7. return xmlHttp.responseText;
  8. }
  9. </script>