Guest User

Untitled

a guest
Jan 22nd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function readSingleFile(evt) {
  2. //Retrieve the first (and only!) File from the FileList object
  3. var f = evt.target.files[0];
  4.  
  5. if (!f) {
  6. alert("Failed to load file");
  7. } else if (!file.type.match('text.*')) {
  8. alert(f.name + " is not a valid text file.);
  9. } else {
  10. var r = new FileReader();
  11. //proceed with read…
  12. }
  13. }
Add Comment
Please, Sign In to add comment