Skip to content

Instantly share code, notes, and snippets.

@thbighead
Created July 10, 2019 17:02
Show Gist options
  • Save thbighead/f45c015be4ae47fe992ceb2f8c028b19 to your computer and use it in GitHub Desktop.
Save thbighead/f45c015be4ae47fe992ceb2f8c028b19 to your computer and use it in GitHub Desktop.
function download(filename, text) {
let 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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment