PDF not show in div or iframe if download manager installed

1.7k Views Asked by At
<iframe src="mydoc.pdf" width="600px" height="800px"></iframe>


<div>
<iframe src="mydoc.pdf" width="600px" height="800px"></iframe>
</div

above code not working if idm installed.

2

There are 2 best solutions below

1
On

Content-Disposition header can be set to attachement or inline

With inline, the browser will try to open the file within the browser.

So if you have a PDF file and Firefox/Adobe Reader, an inline disposition will open the PDF within Firefox, whereas attachment will force it to download.

So make sure to set the Content-Disposition header to inline.

0
On

you should try using the object tag like this:

<object data="sample.pdf#toolbar=1&amp;navpanes=0&amp;scrollbar=1&amp;page=1&amp;view=FitH" type="application/pdf" width="100%" height="100%">

This works with native pdf support in Chrome and new FF and also with plugins in IE (like Foxit or Acrobat Reader).

The width and height can be defined with html outside the tag.