Skip to content

Instantly share code, notes, and snippets.

@ambethia
Created August 21, 2016 04:03
Show Gist options
  • Save ambethia/870e8e52d5f2e0ec930318656978db18 to your computer and use it in GitHub Desktop.
Save ambethia/870e8e52d5f2e0ec930318656978db18 to your computer and use it in GitHub Desktop.
var blob = new Blob([csvString]);
var a = window.document.createElement("a");
a.href = window.URL.createObjectURL(blob, {type: "text/plain"});
a.download = "filename.csv";
// document.body.appendChild(a);
// a.click();
// document.body.removeChild(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment