How to display pdf inside iframe, displaying all PDF pages?

I have been working on multiple PDF documents inside one html page using iFrames. I figured out how to embed pdfs inside iFrames, but I was curious if it was possible to add pdf to iFrame showing all pdf pages; that is, the iframe should display all PDF content without a vertical scrollbar.

Thanks, Y_Y

+3


source to share


2 answers


<iframe src="mydoc.pdf" width="100%" height="800px"></iframe>

      



I don't think you can show all pages unless you make the height property big enough to show all pages. You will need to make the height large enough (proportionally) to show all pages depending on the width of the iframe.

+5


source


IFRAME

<iframe id="fred" style="border:1px solid #666CCC" title="PDF in an i-Frame" src="PDFData.pdf" frameborder="1" scrolling="auto" height="1100" width="850" ></iframe>

      



An object

<object data="your_url_to_pdf" type="application/pdf">
  <embed src="your_url_to_pdf" type="application/pdf" />
</object>

      

0


source







All Articles