Skip to content

Instantly share code, notes, and snippets.

@dustinpoissant
Last active September 13, 2016 14:03
Show Gist options
  • Save dustinpoissant/a3d98b328c1c271e09f17111e0fe64f0 to your computer and use it in GitHub Desktop.
Save dustinpoissant/a3d98b328c1c271e09f17111e0fe64f0 to your computer and use it in GitHub Desktop.
Saves text in a text file
function saveAs(text, filename){
var pom = document.createElement('a');
pom.setAttribute('href', 'data:text/plain;charset=urf-8,'+encodeURIComponent(text));
pom.setAttribute('download', filename);
pom.click();
};
function saveAs(a,b){var c=document.createElement("a");c.setAttribute("href","data:text/plain;charset=urf-8,"+encodeURIComponent(a)),c.setAttribute("download",b),c.click()}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment