I am bad in html layout but I have to produce it :) I want to make big button on a page that is implemented as complex html layout with children tags (maybe - a bad idea). I can handle click event on boundary element with javascript but it requires javascript enabled. I can wrap boundary element with "anchor" tag but is doesn't work in IE
Please, suggest me the best way to implement this.
<a href="...">
<table>
<td>
...
</td>
<td>
...
<table> ... </table>
</td>
</table>
</a>