Skip to content

Instantly share code, notes, and snippets.

@ajitbohra
Created May 3, 2016 09:46
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 ajitbohra/111136e9f5033aaa4004e2b34a98f704 to your computer and use it in GitHub Desktop.
Save ajitbohra/111136e9f5033aaa4004e2b34a98f704 to your computer and use it in GitHub Desktop.
Force PDF Download
/**
* Forces all PDF links to download automatically, if the browser supports it.
* Otherwise, open the link in a new browser window or tab.
*/
jQuery(document).ready(function($) {
$('a[href$=".pdf"]')
.attr('download', '')
.attr('target', '_blank');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment