Hey Riklomas, your quicksearch has been extremely helpful in finding information quickly, but I am new to jquery and have implemented the search ability in a dynamically rendered table. The table does not use
elements and I cannot define them without messing up the rendered table. Is there any other way to search on a single column besides using your selector: 'th'?
"Does not use elements"? How so? As in it doesn't us the "th" element, just "td"? You can use "td:first" or "td:eq(0)" to search the first column, or td:eq(2) to search the 3rd column (the eq() selector is zero-indexed).
Hey Riklomas, your quicksearch has been extremely helpful in finding information quickly, but I am new to jquery and have implemented the search ability in a dynamically rendered table. The table does not use
"Does not use elements"? How so? As in it doesn't us the "th" element, just "td"? You can use "td:first" or "td:eq(0)" to search the first column, or td:eq(2) to search the 3rd column (the eq() selector is zero-indexed).