Skip to content

Instantly share code, notes, and snippets.

@mseeks
Created July 9, 2014 16:14
Show Gist options
  • Save mseeks/f1ffa89e4528431802d8 to your computer and use it in GitHub Desktop.
Save mseeks/f1ffa89e4528431802d8 to your computer and use it in GitHub Desktop.
$.fileDownload('/url/to/download.pdf', {
successCallback: function (url) {
alert('You just got a file download dialog or ribbon for this URL :' + url);
},
failCallback: function (html, url) {
alert('Your file download just failed for this URL:' + url + '\r\n' +
'Here was the resulting error HTML: \r\n' + html
);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment