link in a table opens in a another frame?

liunx

Guest
hi there here is my problem :<br />
<br />
I have a website with 2 frames, in frame A there is a menu in table's. And if I click on a link in frame A I want to see it in frame B.<br />
<br />
here's a piece of the source :<br />
<br />
<td class="tds" onmouseover="fadeImg2(0)" onmouseout="fadeImgend2(0)" onclick="window.open('nieuws.html');" style="border:1px solid gray;background-color:silver;width:100;text-align:center">Home</td><br />
<br />
<br />
Can someone help me with this one?<!--content-->Try something like this:<br />
<br />
<br />
Add 'mainFrame' ...etc" to your link (the name of the frame you want it to be opend)<br />
<br />
<td class="tds" onmouseover="fadeImg2(0)" onmouseout="fadeImgend2(0)" onclick="window.open('nieuws.html' 'mainFrame');" style="border:1px solid gray;background-color:silver;width:100;text-align:center">Home</td><!--content-->Better yet just do this<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"yoururl" target="framename">link text</a><!--content-->
 
Back
Top