Horje

How to Make iframe automatically adjust height

This iframe will run according to your web browser fit.

index.html
Example: HTML
<script>
  function resizeIframe(obj) {
    obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
  }
</script>
<iframe src="https://horje.com" width="100%" frameborder="0" scrolling="no" onload="resizeIframe(this)" />

Output should be:

How to Make iframe automatically adjust height




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin