We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e656e8a commit 54ff88dCopy full SHA for 54ff88d
jquery.uitablefilter.js
@@ -42,19 +42,18 @@
42
43
var index = new Array();
44
45
- for (var j = 0; j < column.length; j++)
+ jq.find("thead > tr:last > th").each(function(i)
46
{
47
- jq.find("thead > tr:last > th").each(function(i) {
48
-
+ for (var j = 0; j < column.length; j++)
+ {
49
if ($.trim($(this).text()) == column[j])
50
51
index[j] = i;
52
- return false;
53
- }
54
55
- });
+ break;
+ }
56
57
+ });
58
59
getText = function(elem) {
60
var selector = "";
0 commit comments