I am attempting to make a 4 section iframe page. I have figured out how to embed a webpage in to one of the frames. But now, I am trying to find a way to open a link into a different iframe on the same page.
For example, we have our admin section and we can click a link to view a full report. I am attempting to have this report show up in a different iframe instead of the link sending me to a different page. I know there are things called anchors but I am unsure how to use them. below is the code I currently have. Thank you ahead of time for you help.
<body>
<table width="547" height="397" border="1" cellpadding="2" cellspacing="1">
<tr>
<td><iframe height="410" width="100%" frameBorder="0" src="http://www.mypage.com" iframe name="topl_frame" id="topl_frame" target="bottoml_frame">your browser does not support IFRAMEs</iframe>
</td>
<td> </td>
</tr>
<tr>
<td><iframe height="410" width="100%" frameBorder="0" src="" name="bottoml_frame">your browser does not support IFRAMEs</iframe></td>
<td> </td>
</tr>
</table>
</body>
</html>