Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

frameSet resize

Status
Not open for further replies.

cedivad

Vendor
Jul 23, 2002
14
GB
i've a structure of this type:

<html>
<head>
<META http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;>
</head>
<frameset frameborder=&quot;no&quot; id=&quot;topFrameSet&quot; rows=&quot;79,*&quot;>
<frame marginheight=&quot;0&quot; marginwidth=&quot;0&quot; name=&quot;titleBar&quot; noresize=&quot;noresize&quot; scrolling=&quot;no&quot; src=&quot;FrontEnd?HtmlBannerFrame=&userReference=051994b833e09b7f&quot;>
<frameset cols=&quot;20%,*,0&quot; frameborder=&quot;no&quot; id=&quot;bodyFrameSet&quot;>
<frame id=&quot;menuZone&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; name=&quot;menuZone&quot; src=&quot;FrontEnd?HtmlMainMenuFrame=&userReference=051994b833e09b7f&quot; style=&quot;20%&quot;>
<frame id=&quot;contentBody&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; name=&quot;contentBody&quot; src=&quot;FrontEnd?HtmlWelcome=&userReference=051994b833e09b7f&quot;>
<frame marginheight=&quot;0&quot; marginwidth=&quot;0&quot; name=&quot;help&quot;>
</frameset>
</frameset>
</html>

launching
parent.document.all('topFrameSet').all('bodyFrameSet').cols=&quot;0,*,0&quot;;


with IE it's all ok, but in Ns
exist a solution???
 
document.all[] is not a collection in Netscape.
In Netscape parent.frames[] is the collection of frames where the parent window is a frameset.
However, my DHTML reference manual says that the frameset is not an object for Netscape, so there would not be a way to refer to the cols property.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top