Re: [PHP-DB] Question in js about frameset rows

2006-06-22 Thread suad
Hi, It's working Thanks Suad Bastien Koert wrote: I have fixed values that I adjust to, but you basically need to give the frame an ID and then use .rows and.columns to adjust the size function shrink() { top.document.getElementById(TOP).rows = 65,*,0,46,0; } function expand() {

Re: [PHP-DB] Question in js about frameset rows

2006-06-21 Thread J R
appologies to the list. i think this should not be asked here. anyway i'll answer. IMHO, there is no easy way to do what you like. what i would suggest is use document.write() or inclosing your frameset in a container div then dynamically change it using innerHTML hth On 6/21/06, suad [EMAIL

RE: [PHP-DB] Question in js about frameset rows

2006-06-21 Thread Bastien Koert
I have fixed values that I adjust to, but you basically need to give the frame an ID and then use .rows and.columns to adjust the size function shrink() { top.document.getElementById(TOP).rows = 65,*,0,46,0; } function expand() { top.document.getElementById(TOP).rows = 65,*,200,46,0; }