i have my navigation set up so that an ie user can click on either the cell that the link is in or the link to open the link. my problem is that when the person clicks on the link, the browser responds by opening the link from the cell AND the link from the link (if that makes any sense). is there a way to somehow disable the cell link if the user clicks directly on the link? here is a little snippet for clarification.
<td id="id9" class="MenuItem" onclick="window.open('default.xml')" onmouseover="rollon(this)" onmouseout="rolloff(this)">
<a href="default.xml" target="_blank" onmouseover="rollon('id9')" onmouseout="rolloff('id9')">
Homepage
</a>
</td>
<td id="id9" class="MenuItem" onclick="window.open('default.xml')" onmouseover="rollon(this)" onmouseout="rolloff(this)">
<a href="default.xml" target="_blank" onmouseover="rollon('id9')" onmouseout="rolloff('id9')">
Homepage
</a>
</td>