Hello,
I have three separate frames named 'top' , 'left' and 'content' and a main page that incluse those frames. On the 'left' frame I have a link. How can I do, that when I click the link, on the 'top' and 'content' frame to load two different pages in the same time. A small source code in HTML or/and PHP will help. Thanks in advance.
Marius.
frames...
Moderator: General Moderators
Code: Select all
<SCRIPT language="JavaScript">
<!--hide
function change2()
{
parent.left_frame.location="foo.htm";
parent.right_frame.location="bar.htm";
}
//-->
</SCRIPT>Code: Select all
<A HREF="javascript:change2()">Change 2 Frames</A>Hello,
Use frames ... is awful. If you know french and read him, go to this website :
http://www.openweb.eu.org/
In this website, on a article, they explain what frames isn't good :
- a lot of bugs
- not "accessible"
As the conséquently, don't use frames. If you know php, use pseudo-frames, it's better.
Good bye
Weber
Use frames ... is awful. If you know french and read him, go to this website :
http://www.openweb.eu.org/
In this website, on a article, they explain what frames isn't good :
- a lot of bugs
- not "accessible"
As the conséquently, don't use frames. If you know php, use pseudo-frames, it's better.
Good bye
Weber