<div id="iframeTestID"> //abritrarily set to 100% w/h
<iframe src="somePDFLink"></iframe> //I want the PDF loaded to scroll if it is longer than 100% of the screen
</div>
I'm trying to get the iframe to scroll based on the content inside of it. Currently I've had no luck assigning heights to the parent div and the iframe. The best I can get to happen is to scroll to the bottom of the parent's height. It is as though I cannot calculate the height of the content loaded by the iframe, but rather just calculate the height assigned to the iframe box. Is what I'm trying to do impossible?