Get frame size : Frame FrameSet : HTML : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  HTML   » [  Frame FrameSet  ]   
 



Get frame size

<!-- 
     Example File From "JavaScript and DHTML Cookbook"
     Published by O'Reilly & Associates
     Copyright 2003 Danny Goodman
-->


function getFrameSize(frameID) {
    var result = {height:0, width:0};
    if (document.getElementById) {
        var frame = parent.document.getElementById(frameID);
        if (frame.scrollWidth) {
            result.height = frame.scrollHeight;
            result.width = frame.scrollWidth;
        }
    }
    return result;
}


           
       
Related examples in the same category
1.  Parent window
2.  Window top frame
3.  Frame 'cols' Example
4.  'rows' Example
5.  'noResize' Example
6.  'frameElement' Example
7.  'frameBorder' Example
8.  'frameSpacing' Example
9.  Frameset in Javascript
10.  Create frameset
11.  Hide and Show Frame ExampleHas Download File
12.  Handling Load Events in a Layout Document
13.  Frameset for document.URL Property Reader
14.  Creating a Blank Frame
15.  A blank frameset with Javascript
16.  Make new frameset
17.  Frameset NavigatorHas Download File
18.  Frameset show and hideHas Download File
19.  Multiple Search EngineHas Download File
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.