Friday, January 20, 2017

AUTO ADJUST IFRAME ACCORDING TO THE SIZE OF CONTENT

1 .   Paste inside <head>

<script>
 function autoSizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
obj.style.width = obj.contentWindow.document.body.scrollWidth + 'px';
 }
</script>

2.add this to your code

<iframe src="your_link.php" frameborder="0" scrolling="no" onload="autoSizeIframe(this)" />

No comments:

Post a Comment