Hi I am using tablesorter and would like to make a slight amendment to how it works. Currently tablesorter sorts a column whenever a user clicks on any part of the cell.
Eg.
<th>One</th>
<th>Two</th>
<th>Three</th>
I don't particularly like the default styling of the sorter, so what I have done is made some css buttons and placed them in each :
<th><a class="button">One</a></th>
<th><a class="button">Two</a></th>
<th><a class="button">Three</a></th>
What would I need to amend in the .js file so that the clickable area is the anchor and not the entire cell?