Skip to content

Instantly share code, notes, and snippets.

@egnedko
Created November 17, 2014 09:57
Show Gist options
  • Save egnedko/b4972d911e0e299d1ca7 to your computer and use it in GitHub Desktop.
Save egnedko/b4972d911e0e299d1ca7 to your computer and use it in GitHub Desktop.
Download something with JS
a = createElement('a');
a.setAttribute('href', 'data:text/plain;base64,SGVsbG8gd29ybGQK'); // Hello Word
a.setAttribute('download', 'file');
a.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment