Hi!
I've manged to resize my frameset in IE using :
<frameset frameborder="0" framespacing="0" border="0" cols="*" rows="46,*,25" id= "s1" name="s1">
and a script saying:
parent.document.all("s1".rows="0,*,25";
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("s1".rows;
but trying to do this:
parent.document.getElementById("s1".rows = "0,*,25";
caused netscape to crash
trying to resize trhe "col" attributes of another frameset didn't crash, but it also had no effect!
So can it be done on Netscape?
I've manged to resize my frameset in IE using :
<frameset frameborder="0" framespacing="0" border="0" cols="*" rows="46,*,25" id= "s1" name="s1">
and a script saying:
parent.document.all("s1".rows="0,*,25";
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("s1".rows;
but trying to do this:
parent.document.getElementById("s1".rows = "0,*,25";
caused netscape to crash
trying to resize trhe "col" attributes of another frameset didn't crash, but it also had no effect!
So can it be done on Netscape?