admin管理员组文章数量:1339774
On clicking a PDF download link, I'd like the pdf to be displayed in that same tab and in a second tab the page /case-studies to load.
Is this possible?
Currently I've got:
<h2 style="text-align: center;"><a href=".pdf" id="pdflink" target="_blank" download=""><strong>Click here to download your eBook</strong></a></h2>
<script type="text/javascript">// <![CDATA[
document.getElementById("pdflink").onclick = function () {
location.href = "";
};
// ]]></script>
However this opens the redirect in a second tab but as the main window confusing the visitor (as if on IE or FF) they don't release the PDF has opened in the first tab.
Any advice?
On clicking a PDF download link, I'd like the pdf to be displayed in that same tab and in a second tab the page /case-studies to load.
Is this possible?
Currently I've got:
<h2 style="text-align: center;"><a href="http://cdn2.hubspot/hub/155045/file-847580737-pdf/Stepping_into_a_new_age_of_marketing_with_CRM_FINAL_APPROVED.pdf" id="pdflink" target="_blank" download=""><strong>Click here to download your eBook</strong></a></h2>
<script type="text/javascript">// <![CDATA[
document.getElementById("pdflink").onclick = function () {
location.href = "https://www.workbooks./case-studies";
};
// ]]></script>
However this opens the redirect in a second tab but as the main window confusing the visitor (as if on IE or FF) they don't release the PDF has opened in the first tab.
Any advice?
Share asked Jun 3, 2015 at 15:28 SamSam 1651 gold badge1 silver badge11 bronze badges1 Answer
Reset to default 11You should do it this way (during the onClick event):
window.open("https://www.workbooks./case-studies",'_blank');
本文标签: javascriptOpen a new tab and download a PDF at the sametimeStack Overflow
版权声明:本文标题:javascript - Open a new tab and download a PDF at the sametime - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743603771a2508993.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论