Skip to content

Instantly share code, notes, and snippets.

@phamquocbuu
Created November 6, 2013 03:33
Show Gist options
  • Save phamquocbuu/7330466 to your computer and use it in GitHub Desktop.
Save phamquocbuu/7330466 to your computer and use it in GitHub Desktop.
var a = document.createElement('a');
a.download = filename; // Set the file name.
a.style.display = 'none';
document.body.appendChild(a);
a.click();
delete a;
@Achilles718611
Copy link

It does not work.

@roeiAnyVision
Copy link

roeiAnyVision commented Mar 4, 2018

you are missing a.href = "URL to download"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment