12 lines
347 B
JavaScript
12 lines
347 B
JavaScript
var $rows = $('#searchable tr');
|
|
$('#search').keyup(function() {
|
|
|
|
var val = '^(?=.*\\b' + $.trim($(this).val()).split(/\s+/).join('\\b)(?=.*\\b') + ').*$',
|
|
reg = RegExp(val, 'i'),
|
|
text;
|
|
|
|
$rows.show().filter(function() {
|
|
text = $(this).text().replace(/\s+/g, ' ');
|
|
return !reg.test(text);
|
|
}).hide();
|
|
});
|