Results 1 to 5 of 5

Thread: Iframes

  1. #1
    Join Date
    Apr 2008
    Location
    Nottingham
    Posts
    213
    Tokens
    0

    Default Iframes

    Anybody know where I can get expandable Iframes that work in FireFox??

    +rep for help

  2. #2
    Join Date
    Jan 2006
    Location
    Cambridge
    Posts
    1,911
    Tokens
    0

    Latest Awards:

    Default

    dynamicdrive.com
    EDTALKING


  3. #3
    Join Date
    Apr 2008
    Location
    Nottingham
    Posts
    213
    Tokens
    0

    Default

    Ive tried that it doesent work for me :S

  4. #4
    Join Date
    Jan 2008
    Posts
    17
    Tokens
    0

    Default

    Idk, but I am looking for the exact same thing.

  5. #5
    Join Date
    Jan 2006
    Location
    Cambridge
    Posts
    1,911
    Tokens
    0

    Latest Awards:

    Default

    HTML Code:
    <html>
    <head>
    <script language="JavaScript">
    function iFrameHeight() {
     if(document.getElementById && !(document.all)) {
      h = document.getElementById('custFrame').contentDocument.body.scrollHeight;
      document.getElementById('custFrame').style.height = h;
     }
     else if(document.all) {
      h = document.frames('custFrame').document.body.scrollHeight;
      document.all.custFrame.style.height = h;
     }
    }
    </script>
    </head>
    HTML Code:
     <body onLoad="iFrameHeight()">
    <iframe src="http://www.bbc.co.uk" width=225  scrolling=no frameborder=0 id="custFrame"; ></iframe>
    </body>
    </html>
    EDTALKING


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •