To open all the pdf’s in a new tab we shall write jQuery Script that sets the target=”_blank” for all .pdf extension in an anchor.
Place the below script before the closing of body tag.
<script> jQuery("a[href*='.pdf']").attr('target','_blank'); </script>
You can also place the script inside the DOM ready.
<script> $( document ).ready(function() { jQuery("a[href*='.pdf']").attr('target','_blank'); }); </script>
Views: 17