Guest User

Untitled

a guest
Mar 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var fileName = "http://www.puzzlers.org/pub/wordlists/pocket.txt";
  2. var txtFile = new XMLHttpRequest();
  3. txtFile.open("GET",fileName,false);
  4. txtFile.send(null);
  5. var txtDoc=txtFile.responseText;
  6. var lines = txtDoc.split("rn");
  7.  
  8. console.log(txtDoc);
Add Comment
Please, Sign In to add comment