I have the following code:-
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
<div class="resizable">
<iframe src=".php" frameborder="0" width="100%" height="100%" scrolling="no" onload="resizeIframe(this)"></iframe>
</div>
The Javascript goes it adjusting the height to what the initial height of the iFrame is, but the height of the iFrame increases as you go through the booking process. Is there a way to auto adjust the height of the iFrame based on the content that lays inside it as the content changes?
Note: The iFrame is displayed on the same domain as the iFrame src.
I have the following code:-
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
<div class="resizable">
<iframe src="http://yellow-taxi.co.uk/onlinebooking/index.php" frameborder="0" width="100%" height="100%" scrolling="no" onload="resizeIframe(this)"></iframe>
</div>
The Javascript goes it adjusting the height to what the initial height of the iFrame is, but the height of the iFrame increases as you go through the booking process. Is there a way to auto adjust the height of the iFrame based on the content that lays inside it as the content changes?
Note: The iFrame is displayed on the same domain as the iFrame src.
Share Improve this question edited Mar 3, 2016 at 20:18 nsilva asked Mar 3, 2016 at 20:04 nsilvansilva 5,62217 gold badges73 silver badges113 bronze badges 2- Do you have any javascript libraries (jQuery) available to use? – Jon Commented Mar 3, 2016 at 20:09
-
Yes
jquery-1.9.1.js
– nsilva Commented Mar 3, 2016 at 20:12
2 Answers
Reset to default 2Try this. No Jquery needed, but you will have to call resizeIframe when the content changes.
function resizeIframe(obj) {
var newheight;
var newwidth;
if(document.getElementById){
newheight = document.getElementById(obj).contentWindow.document .body.scrollHeight;
newwidth = document.getElementById(obj).contentWindow.document .body.scrollWidth;
}
document.getElementById(obj).height = (newheight) + "px";
document.getElementById(obj).width = (newwidth) + "px";
}
Here's an example iFrame and the necessary attributes in it. Be sure to call the above method with your iFrame name.
<iframe src="yourpage.htm" width="100%" height="300px" id="yourIframe" marginheight="0" frameborder="0" onLoad="resizeIframe('yourIframe');"></iframe>
There's also a nice JQuery plugin that will acplish the task, and supposedly works over domains as well: https://github./house9/jquery-iframe-auto-height
Long story short, you can't, unless your page is on the same domain as the iframe page. You've run into a cross-domain limitation, and as a security measure set up by your browser, you won't be able to access JS, DOM elements, or properties within that iframe's content.
SO Explanation