Log in

View Full Version : Help with collapsable tables


Karthick
06-27-2004, 02:04 PM
Hi,

I have a collapsable table, with an iframe (like shoutbox). The iframe loads a new page which is a framset (left and right). Usually without collapsable tables, the left page loads the right page (body onload) through javascript.

Now in firefox, when I collapse the table, and then uncollapse, it loads the left frame but not the right frame. I suspect because the body onload is not being called on uncollapse.

Is there anyway through load the right page from the left page through javascript and still have it working with collapsable table?

Thanks in advance,
K

Ron1n
06-27-2004, 03:59 PM
Hi,

I have a collapsable table, with an iframe (like shoutbox). The iframe loads a new page which is a framset (left and right). Usually without collapsable tables, the left page loads the right page (body onload) through javascript.

Now in firefox, when I collapse the table, and then uncollapse, it loads the left frame but not the right frame. I suspect because the body onload is not being called on uncollapse.

Is there anyway through load the right page from the left page through javascript and still have it working with collapsable table?

Thanks in advance,
K
try loading the java in the navbar template, thats how the menu's are all done

Karthick
06-27-2004, 06:11 PM
try loading the java in the navbar template, thats how the menu's are all done
The right page must load after the left page, therefore the command can only come from the left page, unless there is something like.

if (leftpage.body.loaded()){
rightpage.location = blah;
}