With reference to this answer for live search through table rows, the answer illustrates how to search through first column with the following statement:
var id = $row.find("td:first").text();
My requirement is to search through second column. Replacing first
with second
is not working.