Make any link with .pdf open in new window with jQuery?

前端 未结 4 705
野性不改
野性不改 2020-12-10 17:36

How can I have all links with a .pdf file extension open in a new window using jQuery? I need to change this:



        
4条回答
  •  余生分开走
    2020-12-10 18:33

    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:

    $(function() {
        $('a[href$=".pdf"]').prop('target', '_blank');
    });
    

提交回复
热议问题