Community discussion forum

Creating IFrame through javascript.

  • 3 years ago

    I want to create and laod IFrame in my page through Javascript.


    Thanks in advance for any help.

  • 3 years ago

    Hi GMike,


    Is this what you want to do?


    <html>
    <head>
    <script language="JavaScript" type="text/javascript">
    function makeFrame() {
       ifrm = document.createElement("IFRAME");
       ifrm.setAttribute("src", "http://developerfusion.com/");
       ifrm.style.width = 640+"px";
       ifrm.style.height = 480+"px";
       document.body.appendChild(ifrm);
    }
    </script>
    </head>
    <body>
    <p><a href="#" onMouseDown="makeFrame()">GO! </a></p>
    </body>
    </html>



    Regards,


    Bob

  • 3 years ago

    Bob,


    Thanks a lot you have given me the exact idea. keep it up man.


    Thanks again

  • 2 months ago

    Bob,

    Thanks!!

    This solve my problem which takes my hours to solve.

Post a reply

Enter your message below

Sign in or Join us (it's free).

We'd love to hear what you think! Submit ideas or give us feedback