html clickable layout area. best practice
- by Andrew Florko
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 div with children tags (maybe - a bad idea).
I can handle click event on boundary-div with javascript but it requires javascript enabled.
I can wrap boundary-div 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>