Skip to content

Instantly share code, notes, and snippets.

@vdebergue
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save vdebergue/4ff3d3f188b1ab831900 to your computer and use it in GitHub Desktop.

Select an option

Save vdebergue/4ff3d3f188b1ab831900 to your computer and use it in GitHub Desktop.
save to file
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