I want to resize an iframe every time a new link is accessed inside that iframe.
I have a wordpress blog and I added the forum on a page using this iframe. I want it resized every time I click on a link on that blog.
I googled but I found nothing relevant.
This is the code I am using for my resize
<script type="text/javascript">
function sizeIFrame() {
var helpFrame = jQuery("#ifm");
var innerDoc = (helpFrame.get(0).contentDocument) ? helpFrame.get(0).contentDocument : helpFrame.get(0).contentWindow.document;
helpFrame.height(innerDoc.body.scrollHeight + 35);
}
</script>
<iframe id="ifm" src="..." width="100%" frameBorder="0" onload="sizeIFrame();" scrolling="no"></iframe>
Thank you!
heightmethod on the document object itself without a jquery wrapping... is that intended? – Tejs Apr 13 '12 at 17:58