Skip to content

Instantly share code, notes, and snippets.

@yhuag
Created June 2, 2018 17:27
Show Gist options
  • Save yhuag/47a29fb6ec686f93cdcbda09872be435 to your computer and use it in GitHub Desktop.
Save yhuag/47a29fb6ec686f93cdcbda09872be435 to your computer and use it in GitHub Desktop.
download: function () {
let csvContent = "data:text/csv;charset=utf-8,";
csvContent += document.getElementById("bulktextarea").value;
var encodedUri = encodeURI(csvContent);
var link = document.createElement("a");
link.setAttribute("href", encodedUri);
link.setAttribute("download", "BitcoinKeys.csv");
document.body.appendChild(link);
link.click();
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment