vote up 4 vote down star
6

Hi all,

I am opening my blog page in my website, problem is i can give width to iframe but height should be dynamic so that there is no scroll bar in iframe and it looks like a single page...

i have tried various javascripts to calculate height of content but all of them gives access denied permission and of no use.

my question is can we use ajax to calculate height or may be php.

thanks in advance

flag

25% accept rate

6 Answers

vote up 0 vote down

Try using scrolling=no attribute on the iframe tag. Mozilla also has an overflow-x and overflow-y css property you may look into.

In terms of the height, you could try height=100% also on the iframe tag.

link|flag
height=100% does nothing. – flavour404 Sep 15 at 0:14
vote up 0 vote down

Fitting IFRAME contents is kind of an easy thing to find on google. Here's one solution:

<script type="text/javascript">
function autoIframe(frameId) {
   try{
      frame = document.getElementById(frameId);
      innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
      objToResize = (frame.style) ? frame.style : frame;
      objToResize.height = innerDoc.body.scrollHeight + 10;
   }
   catch(err){
      window.status = err.message;
   }
}
</script>

This of course doesn't solve the cross-domain problem you are having... setting document.domain might help if these sites are in the same place. I don't think there is a solution if you are iframe-ing random sites

link|flag
You're missing a unit on the height assignment, ie 'px'. Doesn't this cause a failure in standards mode? – Crescent Fresh Feb 8 at 19:52
yeah for sure ... mybad – Scott Evernden Feb 9 at 7:05
vote up 2 vote down

You can do this with JavaScript.

document.getElementById('foo').height = document.getElementById('foo').contentWindow.document.body.scrollHeight + "px";
link|flag
The script confuses me. I like to practise with a real site: mathsearchun.blogspot.com/. Is the "id" the innermost div "HTML3" or the outermost div "outer-wrapper"? I got errors such as "contentWindow is undefined" and "document.getElementById("id") is null", in Firebug. What do they mean? – Masi Mar 15 at 15:06
The element you want to get is the iframe, amazon in your case I guess. "contentWindow is undefined" probably means that the element you grabbed doesn't have that property/element. You need to use document.getElementById("amazon") to get your iframe. – Anders S Mar 18 at 13:25
vote up 3 vote down

To directly answer your 2 subquestions: No, you cannot do this with Ajax, nor can you calculate it with PHP.

What I have done in the past is use a trigger from the iframe'd page in window.onload (NOT domready, as it can take a while for images to load) to pass the page's body height to the parent.

<body onload='parent.resizeIframe(document.body.scrollHeight)'>

Then the parent.resizeIframe looks like this:

function resizeIframe(newHeight)
{
  document.getElementById('blogIframe').style.height = parseInt(newHeight) + 10 + 'px';
}

Et voila, you have a robust resizer that triggers once the page is fully rendered with no nasty contentdocument vs contentWindow fiddling :)

Sure, now people will see your iframe at default height first, but this can be easily handled by hiding your iframe at first and just showing a 'loading' image. Then, when the resizeIframe function kicks in, put 2 lines extra inthere that will hide the loading image, and show the iframe for that faux Ajax look.

Ofcourse, this only works from the same domain, so you may want to have a proxy PHP script to embed this stuff, and once you go there, you might aswell just embed your blog's RSS feed directly into your site with PHP.

link|flag
I'm using iframe to load pages. My iframe is in the main page which does not re-load once loaded. Only the pages in iframe changes based on the link clicked from main page that target the iframe. How do I adjust height of iframe in this case. – curious_geek Nov 4 at 5:56
vote up 1 vote down

Not a question but more teaser for those that require iframes that dynamically adjust in height. For example, assume an iframe that displays a page containing tabbed content. One tab may contain content that is larger than the next tab. Do we therefore need to add an event listener in this situation or some function that will resend the adjusted page size to the parent?

link|flag
vote up 0 vote down

Below is my onload event handler. I use an IFRAME within a jQuery UI dialog. Different usages will need some adjustments. This seems to do the trick for me (for now) in IE8 and FF3.5. It might need some extra tweaking but the general idea should be clear. Anyone knows a simpler more elegant solution?

    function onLoadDialog(frame) {
    try {
        var body = frame.contentDocument.body;
        var $body = $(body);
        var $frame = $(frame);
        var contentDiv = frame.parentNode;
        var $contentDiv = $(contentDiv);

        var savedShow = $contentDiv.dialog('option', 'show');
        var position = $contentDiv.dialog('option', 'position');
        // disable show effect to enable re-positioning (UI bug?)
        $contentDiv.dialog('option', 'show', null);
        // show dialog, otherwise sizing won't work
        $contentDiv.dialog('open');

        // Maximize frame width in order to determine minimal scrollHeight
        $frame.css('width', $contentDiv.dialog('option', 'maxWidth') -
                contentDiv.offsetWidth + frame.offsetWidth);

        var minScrollHeight = body.scrollHeight;
        var maxWidth = body.offsetWidth;
        var minWidth = 0;
        // decrease frame width until scrollHeight starts to grow (wrapping)
        while (Math.abs(maxWidth - minWidth) > 10) {
            var width = minWidth + Math.ceil((maxWidth - minWidth) / 2);
            $body.css('width', width);
            if (body.scrollHeight > minScrollHeight) {
                minWidth = width;
            } else {
                maxWidth = width;
            }
        }
        $frame.css('width', maxWidth);
        // use maximum height to avoid vertical scrollbar (if possible)
        var maxHeight = $contentDiv.dialog('option', 'maxHeight')
        $frame.css('height', maxHeight);
        $body.css('width', '');
        // correct for vertical scrollbar (if necessary)
        while (body.clientWidth < maxWidth) {
            $frame.css('width', maxWidth + (maxWidth - body.clientWidth));
        }

        var minScrollWidth = body.scrollWidth;
        var minHeight = Math.min(minScrollHeight, maxHeight);
        // descrease frame height until scrollWidth decreases (wrapping)
        while (Math.abs(maxHeight - minHeight) > 10) {
            var height = minHeight + Math.ceil((maxHeight - minHeight) / 2);
            $body.css('height', height);
            if (body.scrollWidth < minScrollWidth) {
                minHeight = height;
            } else {
                maxHeight = height;
            }
        }
        $frame.css('height', maxHeight);
        $body.css('height', '');

        // reset widths to 'auto' where possible
        $contentDiv.css('width', 'auto');
        $contentDiv.css('height', 'auto');
        $contentDiv.dialog('option', 'width', 'auto');

        // re-position the dialog
        $contentDiv.dialog('option', 'position', position);

        // hide dialog
        $contentDiv.dialog('close');
        // restore show effect
        $contentDiv.dialog('option', 'show', savedShow);
        // open using show effect
        $contentDiv.dialog('open');
        // remove show effect for consecutive requests
        $contentDiv.dialog('option', 'show', null);

        return;
    }

    //An error is raised if the IFrame domain != its container's domain
    catch (e) {
        window.status = 'Error: ' + e.number + '; ' + e.description;
        alert('Error: ' + e.number + '; ' + e.description);
    }
};
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.