Guest User

Untitled

a guest
Jun 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <script language="Javascript">
  2. function download(filename, text) {
  3. var pom = document.createElement('a');
  4. pom.setAttribute('href', 'data:text/plain;charset=utf-8,' +
  5.  
  6. encodeURIComponent(text));
  7. pom.setAttribute('download', filename);
  8.  
  9. pom.style.display = 'none';
  10. document.body.appendChild(pom);
  11.  
  12. pom.click();
  13.  
  14. document.body.removeChild(pom);
  15. }
  16. function addTextTXT()
  17. {
  18. document.addtext.name.value = document.addtext.name.value + ".txt"
  19. }
  20. </script>
  21.  
  22.  
  23.  
  24.  
  25. <form name="addtext" onsubmit="download(this['name'].value, this['text'].value)">
  26.  
  27. <textarea rows="10" cols="70" name="text" placeholder="Type your text here:"></textarea>
  28. <br>
  29. <input type="text" name="name" value="" placeholder="File Name">
  30. <input type="submit" onclick="addTexttxt();" value="Save As TXT">
  31.  
  32. </form>
Add Comment
Please, Sign In to add comment