Last active
August 29, 2015 14:05
-
-
Save vdebergue/4ff3d3f188b1ab831900 to your computer and use it in GitHub Desktop.
save to 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
| var blob = new Blob(['foo, bar, baz'], {type: 'text/plain'}); | |
| var uri = URL.createObjectURL(blob); | |
| myAElement.download = 'myFileName.csv'; | |
| myAElement.href = uri; | |
| // when clicking on myAElement, it will download to the browser a file containing your string | |
| // see also: http://stackoverflow.com/a/19328891/1926897 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment