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