<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.
<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.
you should try using the object tag like this:
<object data="sample.pdf#toolbar=1&navpanes=0&scrollbar=1&page=1&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.
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.