up vote 0 down vote favorite
2
share [g+] share [fb]

Possible Duplicate:
Resizing an iframe based on content

I have an iframe where the src is an HTML file and this iframe is put inside usercontrol:

<iframe frameborder="0" src="CName.htm" align="left" width="730" height="1100" ></iframe>

I need the iframe to resize according to the content so that it's height is set according to the hieght of the HTML file and I don't need to use scrolling attribute. Do you have any idea?

link|improve this question

62% accept rate
feedback

closed as exact duplicate by Robert Harvey Apr 7 '11 at 16:59

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

4 Answers

I've used the following jQuery code to do this:

$('#iframe_id').load(function () {
    $(this).height($(this).contents().height());
    $(this).width($(this).contents().width());
});

I don't think this will work if the iframe contents are cross-domain, though.

link|improve this answer
feedback

There is a way! Its in jquery and its too simple. Kinda hacky..

$('iframe').contents().find('body').css({"min-height": "100", "overflow" : "hidden"});
setInterval( "$('iframe').height($('iframe').contents().find('body').height() + 20)", 1 );

There you go!

Cheers! :)

link|improve this answer
feedback

Resizing an IFrame gets ugly really quick. In fact, I don't think there's a good, cross-browser way to do what you want the way you want to.

Are you sure you need to do this? Perhaps you could consider a different approach?

link|improve this answer
feedback

You can figure out the height and width of the content inside the frame, then call a function that's on the frame's owner to set the iframe element's height and width.

link|improve this answer
feedback

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