I have web page which has 2 horizontal <frame>
s. The 2nd <frameset>
is divided in to a 2 column <frameset>
.
Now when I click on an external link of 1st <frame>
it should load the page into the 2nd column's <frame>
.
I have named both frames and on the href
I have added the destination.
See example pages:
index.html
<!DOCTYPE html>
<html>
<frameset rows="25%,*">
<frame src="title.html">
<frame src="frames.html">
</frameset>
</html>
title.html
<!DOCTYPE html>
<html>
<marquee>
<b>
Welcome
</b>
</marquee>
</html>
frames.html
<!DOCTYPE html>
<html>
<frameset cols="15%,*">
<frame src="menu.html" name="menu_page">
<frame name="main_page">
</frameset>
</html>
menu.html
<!DOCTYPE html>
<html>
<a href="http://www.google.com" target="main_page">Google</a>
<br /><br />
<a href="http://www.microsoft.com" target="main_page">Microsoft</a>
<br /><br />
</html>