This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
// external links to new window | |
$('a[href^="http://"]').not('a[href*="mydomainname"]').attr('target','_blank'); | |
// force PDF Files to open in new window | |
$('a[href$=".pdf"]').attr('target', '_blank'); | |
}); |