Guest User

Untitled

a guest
Jun 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <script language="javascript" type="text/javascript">
  2. file="http://1.1.1.1/mysite/files/test.html"
  3. var rawFile = new XMLHttpRequest();
  4. rawFile.open("GET", file, false);
  5. rawFile.onreadystatechange = function ()
  6. {
  7. if(rawFile.readyState === 4)
  8. {
  9. if(rawFile.status === 200 || rawFile.status == 0)
  10. {
  11. var allText = rawFile.responseText;
  12. document.getElementById("content_file").innerHTML=allText;
  13. }
  14. }
  15. }
  16. rawFile.send(null);
  17. </script>
Add Comment
Please, Sign In to add comment