Last active
September 13, 2016 14:03
-
-
Save dustinpoissant/a3d98b328c1c271e09f17111e0fe64f0 to your computer and use it in GitHub Desktop.
Saves text in a text file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function saveAs(text, filename){ | |
var pom = document.createElement('a'); | |
pom.setAttribute('href', 'data:text/plain;charset=urf-8,'+encodeURIComponent(text)); | |
pom.setAttribute('download', filename); | |
pom.click(); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function saveAs(a,b){var c=document.createElement("a");c.setAttribute("href","data:text/plain;charset=urf-8,"+encodeURIComponent(a)),c.setAttribute("download",b),c.click()} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment