У меня та же проблема. Нашел решение в Документации . Нужно добавить парсер для ссылок, который удаляет теги <a>
из начала текста в столбце при сортировке.
Вот код, который должен решить вашу проблему:
<script type="text/javascript">
// add parser through the tablesorter addParser method
$.tablesorter.addParser({
// set a unique id
id: 'links',
is: function(s)
{
// return false so this parser is not auto detected
return false;
},
format: function(s)
{
// format your data for normalization
return s.replace(new RegExp(/<.*?>/),"");
},
// set type, either numeric or text
type: 'text'
});
// Apply "links" parser to the appropriate column
$(document).ready(function()
{
$("#MyTable").tablesorter({
headers: {
0: {
sorter: 'links'
}
}
});
</script>