Skip to content

Instantly share code, notes, and snippets.

@josellausas
Created March 8, 2018 16:33
Show Gist options
  • Save josellausas/c18acf60354a6c341561bc135096606a to your computer and use it in GitHub Desktop.
Save josellausas/c18acf60354a6c341561bc135096606a to your computer and use it in GitHub Desktop.
Javascript: Download as CSV
const downloadCSV = csv_data => {
const hidden_element = document.createElement("a");
const uri_encoded = encodeURI(csv_data);
hidden_element.href = `data:text/csv;charset=utf8,${uri_encoded}`;
hidden_element.target = "_blank";
hidden_element.download = "storypins.csv";
hidden_element.click();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment