tags:

views:

30

answers:

2

i want to display entire row (but the search opertion could be done in a particular column(td)).

by using this /**

$(function () {
  $('input#searchCode').quicksearch('table#employeeTable tbody tr',{

  });
 });

*/

i can search a text in entire row.but i dont know to search in a specified column and display entire row...

A: 

try this plugin out. looks pretty painless.

nathan gonzalez
A: 

use 'selector': 'td:eq(3)' for every 4th td...

demo here ( note that in my demo, 1st colum is a <th>, so your search will be in IP)

Reigel