Skip to content

Instantly share code, notes, and snippets.

@benhg
Created July 29, 2019 21:06
Show Gist options
  • Save benhg/c071f421a02b2bb4fbef0d714efb863f to your computer and use it in GitHub Desktop.
Save benhg/c071f421a02b2bb4fbef0d714efb863f to your computer and use it in GitHub Desktop.
function download(filename, text) {
var element = document.createElement('a');
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
element.setAttribute('download', filename);
element.style.display = 'none';
document.body.appendChild(element);
element.click();
document.body.removeChild(element);
}
// Start file download.
download("hello.txt","This is the content of my file :)");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment