how do I enable a toggle function on a table row, while still maintaining the ability to click through to the page specified in a link? The link is within the td, like table tr td a.
The HTML for the row looks like this:
<tr class="listitem">
<td>
<a href="/apartments/4df632fd35be357701000005">E 64th St, Manhattan, NY 10065, USA</a>
</td>
...
</tr>
And so far the JavaScript I am using is something like this:
$('.listitem').toggle(function(){...}, function(){...});
Which is disabling the ability to click on the <a> element. How do I get around this?