Click to See Complete Forum and Search --> : 'Going back at specific place' problem


Djamboff
09-18-2003, 04:04 AM
I am in some page of the site and want to go back to index.htm containing frame (top,left,main) and to load specific file in main.
I use :

function back(){
window.location = '../../../index.htm';
parent.main.location ='../../../Structure/struct.htm';
}
but may be back() stops executing after first line and do not load struct.htm in main.
The result is that I have index.htm, but its initial view on the screen.
Do you have any ideas how to do that? Thanks.Valentin.

Khalid Ali
09-18-2003, 07:49 AM
just think about it,
after the first line is executed, second line is not there any more,then index page is already opened....

You will need to change your logic

Djamboff
09-19-2003, 02:16 AM
Thanks mr. Khalid.I suspected the same what was your answer.This problem is part of more common problem of communication with menu and submenus,but I will ask it on the Forum. Valentin.