Skip to main content
Participant
July 24, 2006
Question

Displaying a PDF File in a Div

  • July 24, 2006
  • 1 reply
  • 661 views
I'm stuck on something so simple. I have a page with 2 side by side divs. I want to display a PDF in the left div. How do I do it?

<body>

<div id="PDF" class="scrollLeft">
PDF goes here!
</div>

<div id="PatientEntry" class="scrollRight">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.</p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.</p>
</div>

</body>

Thanks,
Gary
    This topic has been closed for replies.

    1 reply

    Fernis
    Inspiring
    July 26, 2006
    This should do the trick.

    <div id="PDF" class="scrollLeft">
    <iframe width="99%" height="99%" src="mypdf.PDF"></iframe>
    </div>