検索バーを使用してテーブルを検索可能にしようとしています。コードを追加しましたが、テーブルの最初の列でのみ検索します。私はテーブルのすべての列を検索可能にしたい。どうすればいいの?ここに私のコードです。テーブル全体を検索可能にする
$("#search").on("keyup", function() {
var value = $(this).val();
$(".table tr").each(function(index) {
if (index !== 0) {
$row = $(this);
var id = $row.find("td:first").text();
if (id.indexOf(value) !== 0) {
$row.hide();
//$row.html('Records not found!');
//$(".norecord").html('<td colspan="9">Records not found!</td>');
}
else {
$row.show();
}
}
});
});