From b0fdbef3c7a96c360a7c46ebf5cea9425eab1477 Mon Sep 17 00:00:00 2001 From: Mottie Date: Sat, 12 Apr 2014 07:02:56 -0500 Subject: [PATCH] Filter widget: include tbody th's --- js/jquery.tablesorter.widgets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.tablesorter.widgets.js b/js/jquery.tablesorter.widgets.js index 8d24497b..f3c417cf 100644 --- a/js/jquery.tablesorter.widgets.js +++ b/js/jquery.tablesorter.widgets.js @@ -902,7 +902,7 @@ ts.filter = { // checked here so the option can be changed dynamically childRowText = (childRow.length && wo.filter_childRows) ? childRow.text() : ''; childRowText = wo.filter_ignoreCase ? childRowText.toLocaleLowerCase() : childRowText; - $cells = $rows.eq(rowIndex).children('td'); + $cells = $rows.eq(rowIndex).children(); if (anyMatch) { rowArray = $cells.map(function(i){