Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an iframe that re-sizes its own content. The First time the iframe loades, the content re-sizes fine, but content not changing on subsequent resizing or page scrolling.

I have tried onresize,onmove...

 <script type="text/javascript">
    function autoIframe(frameId) {
        try {
            frame = document.getElementById(frameId);

            innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;

            if (innerDoc == null) {
                // Google Chrome
                frame.height = document.all[frameId].clientHeight + document.all[frameId].offsetHeight + document.all[frameId].offsetTop;
            }
            else {

                objToResize = (frame.style) ? frame.style : frame;
                objToResize.height = (innerDoc.body.scrollHeight +200) + 'px';

                //document.getElementById("autosizeframe").style.height=(innerDoc.body.scrollHeight+18)+'px';
                //alert(frame.style.height+'-'+innerDoc.body.scrollHeight)
            }
        }

        catch (err) {
            document.getElementById("autosizeframe").style.height = '1600px';
            document.getElementById("autosizeframe").style.width = '1000px';
            //alert('Err: ' + err.message);
            window.status = err.message;
        }
    }

share|improve this question

1 Answer

I have made an iframe auto resizer script too, years ago. Maybe it is helpful for you: http://www.professorweb.de/javascript-ajax/iframe-hohe-an-dessen-inhalt-automatisch-anpassen-v2.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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