Skip to content

Instantly share code, notes, and snippets.

@anupammaiti
Forked from gpprojekt-marcin/pdf_download.js
Created June 14, 2020 14:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anupammaiti/1354e50ba5c1412e845b04f237ce03a0 to your computer and use it in GitHub Desktop.
Save anupammaiti/1354e50ba5c1412e845b04f237ce03a0 to your computer and use it in GitHub Desktop.
jQuery.ajax() download pdf
$.ajax({
url: url,
data: data,
success: function (data) {
var blob = new Blob([data]);
var link = document.createElement('a');
link.href = window.URL.createObjectURL(blob);
link.download = "Dossier.pdf";
link.click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment