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

frameset cols

Status
Not open for further replies.

dexeloper

Programmer
Oct 26, 2004
162
GB
A frameset (named F1) has cols, say , 80%,20% and, via the left frame, I want to remove the right frame and display a new page in the left (now 100% frame) frame.

In IE parent.F1.cols="100%,0%"; works nicely but not in FireFox - parent.F1 has no proerties.

Any ideas?
 
Why not just set the location of the parent?

Code:
parent.location = 'newpage.html';

*cLFlaVA
----------------------------
"Holy crip he's a crapple!
 
Or
Code:
parent.[red]getElementbyId('F1')[/red].cols="100%,0%";
might make a difference.

--Chessbot

"See the TURTLE of enormous girth!"
-- Stephen King, The Dark Tower series
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top