Skip to content

Instantly share code, notes, and snippets.

@michelle
Created March 10, 2014 03:24
Show Gist options
  • Save michelle/9458947 to your computer and use it in GitHub Desktop.
Save michelle/9458947 to your computer and use it in GitHub Desktop.
save file
function saveFile(blob) {
var link = document.createElement('a');
link.href = window.URL.createObjectURL(blob);
link.download = 'Filename';
link.click();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment