doublek321
12-07-2005, 05:21 PM
I have a problem that's happening in IE (version 6 for sure but maybe more than that) but not in firefox. I have an anchor tag with an href URL. Inside that element I have a bunch of subelements (divs, tables, images, etc). The functionality I want is for the user to be able to click ANYWHERE and be sent to the URL I specified in the anchor tag. In firefox, this works perfectly. In IE, however, left-clicking doesn't work. If you right-click and "open in new window", however, it works fine. I'm guessing that IE doesn't like that I have all these subelements within my anchor tag. If anyone has a solution for me I'd greatly appreciate it. If it helps any, the subelements are...
<a href="SOME_URL">
<div>
<div>
<img></img>
</div>
<div>
</div>
<table>
<tr>
<td>
</td>
<td>
<img></img>
</td>
</tr>
</table>
</div>
</a>
<a href="SOME_URL">
<div>
<div>
<img></img>
</div>
<div>
</div>
<table>
<tr>
<td>
</td>
<td>
<img></img>
</td>
</tr>
</table>
</div>
</a>