I need solution for auto adjust width height of iframe to fit with content in it, and the point is the content size (width, height) could be change after iframe loaded. I guess i need a event action when body size changed.
|
|
|
Try this code it will solve the problem completely and it's simple:
|
|||||||||||||||||||||
|
|
There are some issues with browsers. |
|||||
|
|
Here is a cross-browser solution if you don't want to use jQuery:
|
|||
|
|
|
All solutions given thus far only account for a once off resize. You mention you want to be able to resize the iFrame after the contents are modified. In order to do this, you need to execute a function inside the iFrame (once the contents are changed, you need to fire an event to say that the contents have changed). I was stuck with this for a while, as code inside the iFrame seemed limited to the DOM inside the iFrame (and couldn't edit the iFrame), and code executed outside the iFrame was stuck with the DOM outside the iFrame (and couldn't pick up an event coming from inside the iFrame). The solution came from discovering (via assistance from a colleague) that jQuery can be told what DOM to use. In this case, the DOM of the parent window. As such, code such as this does what you need (when run inside the iFrame) :
|
|||
|
|
|
I am using this code to autoadjust height of all iframes (with class autoHeight) when they loads on page. Tested and it works in IE, FF, Chrome, Safari and Opera.
|
|||||||||
|
|
I slightly modified Garnaph's great solution above. It seemed like his solution modified the iframe size based upon the size right before the event. For my situation (email submission via an iframe) I needed the iframe height to change right after submission. For example show validation errors or "thank you" message after submission. I just eliminated the nested click() function and put it into my iframe html:
Worked for me, but not sure about cross browser functionality. |
|||
|
|
|
If the iframe content is from the same domain this should work great. It does require jQuery though.
To have it resize dynamically you could do this:
Then on the page that the iframe loads add this:
|
|||
|
|
|
It is possible to make a "ghost-like" IFrame that acts like it was not there. See http://codecopy.wordpress.com/2013/02/22/ghost-iframe-crossdomain-iframe-resize/ Basically you use the event system This works an all modern browsers! |
|||
|
|
|
This is how I would do it (tested in FF/Chrome):
|
|||||
|
