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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

frameset resizing

Status
Not open for further replies.

ronsig

Programmer
May 24, 2001
54
IL
Hi!

I've manged to resize my frameset in IE using :
<frameset frameborder=&quot;0&quot; framespacing=&quot;0&quot; border=&quot;0&quot; cols=&quot;*&quot; rows=&quot;46,*,25&quot; id= &quot;s1&quot; name=&quot;s1&quot;>

and a script saying:
parent.document.all(&quot;s1&quot;).rows=&quot;0,*,25&quot;;

But this won't work on N6.2
I've even managed to retrieve the rows property in N6.2, using:
var S1 = parent.document.getElementById(&quot;s1&quot;).rows;

but trying to do this:
parent.document.getElementById(&quot;s1&quot;).rows = &quot;0,*,25&quot;;

caused netscape to crash
trying to resize trhe &quot;col&quot; attributes of another frameset didn't crash, but it also had no effect!

So can it be done on Netscape?
 
Ronsig,

I am running into the same problem you did in February. Were you able to find a solution to resize a frameset using Javascript?

If you can, would you respond to smuclay@hotmail.com.

Thanks a lot!!
Clay
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top