Skip to content

Instantly share code, notes, and snippets.

@jrc03c
Last active September 30, 2024 11:13
Show Gist options
  • Save jrc03c/17a87c50af42fb55f7270d4047cf7497 to your computer and use it in GitHub Desktop.
Save jrc03c/17a87c50af42fb55f7270d4047cf7497 to your computer and use it in GitHub Desktop.
Download text as a file
function downloadText(filename, text){
const a = document.createElement("a")
a.href = "data:text/plain;charset=utf-8," + encodeURIComponent(text)
a.download = filename
a.dispatchEvent(new MouseEvent("click"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment