admin管理员组文章数量:1345011
A link that contains a .pdf such as the following opens in a new tab:
<a target="_blank" href="">Download</a>
Is it possible to make a Powerpoint file, .ppt, open in a new browser tab instead of making the user download the file?
I have tried this the following but this makes a user download the file:
<a target="_blank" href="">Download</a>
I am not sure if this is possible and have not been able to find any information on it so I am posting here.
A link that contains a .pdf such as the following opens in a new tab:
<a target="_blank" href="http://somePDF.pdf">Download</a>
Is it possible to make a Powerpoint file, .ppt, open in a new browser tab instead of making the user download the file?
I have tried this the following but this makes a user download the file:
<a target="_blank" href="http://somePPT.ppt">Download</a>
I am not sure if this is possible and have not been able to find any information on it so I am posting here.
Share Improve this question edited Jan 23, 2013 at 20:59 Mdd asked Jan 23, 2013 at 20:58 MddMdd 4,43012 gold badges48 silver badges71 bronze badges 2- Updated. I tagged it with Java instead of JavaScript by mistake. – Mdd Commented Jan 23, 2013 at 21:04
- @Mdd You tagged your question with "Java". But your question has nothing to do with Java...just Javascript. That's all Doorknob meant. People often confuse the two things – Ian Commented Jan 23, 2013 at 21:06
3 Answers
Reset to default 7If the user's browser isn't able to display the file and has no plugin that can display the file, it will offer the file as a download.
If you can export the PowerPoint slides to PDF or HTML, they are more likely to be displayed in the browser.
you could check if the browser has installed an pdf plugin, and if not use pdf.js to convert your pdf into an html page.
could look like this:
function hasPDFPlugin() {
for(var i = 0; i < navigator.plugins.length; i++) {
if(navigator.plugins[i].name.toLowerCase().indexOf('pdf') >== 0) {
return true;
}
}
return false;
}
if(!hasPDFPlugin()) {
// do the pdf.js stuff
}
with the help of google docs it can viewable.add file location after url= https://docs.google./viewerng/viewer?url=
ex-https://docs.google./viewerng/viewer?url=http://example.in/filename.ppt
本文标签: javascriptOpen ppt file in a new browser tabStack Overflow
版权声明:本文标题:javascript - Open ppt file in a new browser tab - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743765740a2535203.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论