I'm using the following to href a word to bring up a sticky
<a href="faqs.cfm" rel="faqs.cfm" title="FAQ" class="sticky">FAQS</a>
This links resides in a <td>. I want to make the TD clickable using something similar to: onclick="location.href='faqs.cfm';" within the TD.
The js is:
<script type="text/javascript">
$(document).ready(function() {
$('a.sticky').cluetip({sticky: true});
});
</script>
How can I write it to use onclick to activate same function?