How can I have all links with a .pdf file extension open in a new window using jQuery? I need to change this:
.pdf
To achieve this you can select any a element which has a href property ending with .pdf, and add a target="_blank" attribute to it. Try this:
a
href
target="_blank"
$(function() { $('a[href$=".pdf"]').prop('target', '_blank'); });