My search currently searches through all the table fields - I would like it to only search the ones that have a td class of test.
Im using
This searches all the fields in the table, I have tried:Code:$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr');
but this just stops the whole search from working.Code:$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr td.test');
I also tried:
But this doesnt find anything...Code:'$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr', {'selector': 'td.test'});
Ideas appreciated?



Reply With Quote

Bookmarks