Skip to content

Instantly share code, notes, and snippets.

@facugon
Created January 29, 2021 12:41
Show Gist options
  • Save facugon/c41ec8f55aaca0f957f4149710c4b906 to your computer and use it in GitHub Desktop.
Save facugon/c41ec8f55aaca0f957f4149710c4b906 to your computer and use it in GitHub Desktop.
ajax file download
/**
* create a link and force download
*/
function forceDownload () {
var a = document.createElement('a');
var url = window.URL.createObjectURL(data);
a.href = url;
a.download = 'myfile.pdf';
document.body.append(a);
a.click();
a.remove();
window.URL.revokeObjectURL(url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment