Click to See Complete Forum and Search --> : link in a table opens in a another frame?


Tonko
09-01-2003, 03:17 AM
hi there here is my problem :

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.

here's a piece of the source :

<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>


Can someone help me with this one?

Zeena
09-01-2003, 06:21 AM
Try something like this:


Add 'mainFrame' ...etc" to your link (the name of the frame you want it to be opend)

<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>

PeOfEo
09-01-2003, 09:57 AM
Better yet just do this
<a href="yoururl" target="framename">link text</a>