Thursday, 10 January 2013

Open pdf file in a new window

In a document library, pdf, word, excel file open in the same window as view does. For word, excel still have a breadcrumb links which can navigate back, for pdf we need a solution to open it in a new window via this script:

<script>
$(“a[href$='.pdf']“).removeAttr(‘onclick’).attr(“target”,”_blank”);
< /script>

Simple and efficient !

No comments:

Post a Comment