javascriptiframeiframe-resizer

Iframe Resizer not resizing?


I'm using David J Bradshaw's iframe resizer but I can't get it to resize at all.

Here is the test page.


Solution

  • I think the issue might be that the JavaScript that should to the work isn't loaded when you call $('iframe').iFrameResize({log:true});. So in order to make it work add a $(document).ready statement:

    $(document).ready(function() {
        $('iframe').iFrameResize({log:true});
    });