Skip to content

Instantly share code, notes, and snippets.

@Osmiogrzesznik
Created March 20, 2020 09:48
Show Gist options
  • Save Osmiogrzesznik/6960284f9e9d1f7070aca1e938849c54 to your computer and use it in GitHub Desktop.
Save Osmiogrzesznik/6960284f9e9d1f7070aca1e938849c54 to your computer and use it in GitHub Desktop.
function saveText(text, filename) {
var a = document.createElement('a');
a.setAttribute('href', 'data:text/plain;charset=utf-u,' + encodeURIComponent(text));
a.setAttribute('download', filename);
a.click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment