Skip to content

Instantly share code, notes, and snippets.

@perguth
Created March 2, 2015 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perguth/d9eb3ee893dd75c79e7b to your computer and use it in GitHub Desktop.
Save perguth/d9eb3ee893dd75c79e7b to your computer and use it in GitHub Desktop.
Open the download dialog for a file blob.
function saveFile(blob) {
var link = document.createElement('a')
link.href = window.URL.createObjectURL(blob)
link.download = 'File Name'
link.click()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment