Determining Frame Sizes
I have a frameset that is created using the following HTML
<frameset framespacing="0" border="0" cols="235,*" frameborder="0">
<frameset rows="50,*,75">
<frame name="menu" scrolling="no"
src="Menu.htm" target="_self" noresize>
<frame name="contents" src="blank.htm" target="rtop"
scrolling="auto" marginheight="4" marginwidth="5">
<frame name="return" scrolling="no"
src="return_links.htm" noresize
target="_parent" >
</frameset>
<frame name="main" scrolling="auto" src="Intro.htm"
target="rtop">
</frameset>
Using JavaScript, is there a way that a script running in the HTML
code for the frame named "contents" to determine the size of the
frame named "contents"? Everything I've been able to find deals with
the size of the browser window, not the size of the frames within the
window.
Thanks for your help,
jd
|