Hello,
I have an application that is contained inside a frameset: One horizontal frame contains the logo and the application title.
The application is contained within the 2nd frame.
The whole application is contained within the 2nd horizontal frame: "panel".
In each page there is a kind of menu, made of links, that allows the user to go backward... Everything works fine until in one of my page I need to use 3 frames (1 horizontal and 2 vertical frames.
THey are defined as follows;
My problem is .....
- When the user on a link to go backward, I would like the 3 frames to desappear.
Now, I have tried to place the below line in javascript in the head section of the page:
but it makes the whole frames disappear!!! and always want the 2 initial frames to remain!!!
Help me please!
ELisabeth
I have an application that is contained inside a frameset: One horizontal frame contains the logo and the application title.
The application is contained within the 2nd frame.
Code:
<HTML>
<FRAMESET Rows="110,*" BORDER=0>
<FRAME Name="head" SRC="includes/logo.html" SCROLLING=no MARGINHEIGHT= 0>
<FRAME Name="panel" SRC="login.jsp" SCROLLING=auto MARGINHEIGHT=0>
</FRAMESET>
</HTML>
The whole application is contained within the 2nd horizontal frame: "panel".
In each page there is a kind of menu, made of links, that allows the user to go backward... Everything works fine until in one of my page I need to use 3 frames (1 horizontal and 2 vertical frames.
THey are defined as follows;
Code:
<frameset rows="20%,80%" >
<frame src="horizontal.jsp" scrolling=no>
<frameset cols="20%,80%" >
<frame src="toc.jsp" name="frame1">
<frame src="globalParameters.jsp" name="frame2">
</frameset>
</frameset>
My problem is .....
- When the user on a link to go backward, I would like the 3 frames to desappear.
Now, I have tried to place the below line in javascript in the head section of the page:
Code:
<script>
if (self.location != top.location) top.location = self.location;
</script>
but it makes the whole frames disappear!!! and always want the 2 initial frames to remain!!!
Help me please!
ELisabeth