Skip to content

Instantly share code, notes, and snippets.

@hayskytech
Created April 13, 2023 06:31
Show Gist options
  • Save hayskytech/f84719d17610a90a94d0266fe0afed2b to your computer and use it in GitHub Desktop.
Save hayskytech/f84719d17610a90a94d0266fe0afed2b to your computer and use it in GitHub Desktop.
<script type="text/javascript">
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);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment