Skip to content

Instantly share code, notes, and snippets.

@ohac
Created April 10, 2018 09:43
Show Gist options
  • Select an option

  • Save ohac/3632d1914521400a698d6c504ca550df to your computer and use it in GitHub Desktop.

Select an option

Save ohac/3632d1914521400a698d6c504ca550df to your computer and use it in GitHub Desktop.
(()=>{
var a = document.createElement('A');
a.download='foo-'+(new Date()).toISOString()+'.txt';
a.href='data:text/plain,foo';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment