Hello all I want to make the div’s I have inside my td’s act as href’s. How can I achieve this??
Maybe with jquery or javascript if not with html??
<table class="mgmtview_table" align="center">
<tr>
<td class="content" id="content">
<table class="content_table">
<tr>
<td class="topBar">
<div id="div_view" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view2" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view3" align="center">FusionCharts will load here!</div>
</td>
</tr>
<tr>
<td class="topBar">
<div id="div_view4" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view5" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view6" align="center">FusionCharts will load here!</div>
</td>
</tr>
<tr>
<td class="topBar">
<div id="div_view7" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view8" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view9" align="center">FusionCharts will load here!</div>
</td>
</tr>
With jquery you can do something like this:
But if you want links, then you should really use
<a href="...">. That’s what they’re made for. :p