Skip to content

Instantly share code, notes, and snippets.

@jaymiejones86
Created May 28, 2012 22:08
Show Gist options
  • Save jaymiejones86/2821422 to your computer and use it in GitHub Desktop.
Save jaymiejones86/2821422 to your computer and use it in GitHub Desktop.
Open any anchor which has a file extension of PDF in a new window with jQuery.
$('a[href$=".pdf"]').click(function(e) {
e.preventDefault();
window.open(this.href);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment