zettelkasten/OneNoteExport/Technik/Programieren/Javascript/05_Iframe.md
Ralf Koop 7389e600f9 vault backup: 2023-11-12 11:19:55
Affected files:
2023-11-12 11:19:55 +01:00

1.2 KiB

Iframe

Mittwoch, 30. Juni 2021

18:40

 

 

Anpassen der Höhe des Iframes auf den Content

 

<script>

        // Selecting the iframe element

        var frame = document.getElementById("Iframe");

          

        // Adjusting the iframe height onload event

        frame.onload = function()

        // function execute while load the iframe

        {

          // set the height of the iframe as 

          // the height of the iframe content

          frame.style.height = 

          frame.contentWindow.document.body.scrollHeight + 'px';

           

  

         // set the width of the iframe as the 

         // width of the iframe content

         frame.style.width  = 

          frame.contentWindow.document.body.scrollWidth+'px';

              

        }

        </script>

 

Aus <https://www.geeksforgeeks.org/how-to-adjust-the-width-and-height-of-iframe-to-fit-with-content-in-it/>

Bei SPO muss dafür der Modern Script Editor WEB Part genutzt werden

#nochzubearbeiten