Display what is matched in user table (experimental, normalizing is not working)

This commit is contained in:
Yohann D'ANELLO 2020-08-06 20:21:35 +02:00
parent 86ff23357c
commit bb8e3aaccf
1 changed files with 4 additions and 2 deletions

View File

@ -58,8 +58,10 @@
timer_on = false;
});
$("tr > td:eq(0), tr > td:eq(1), tr > td:eq(2), tr > td:eq(3), tr > td:eq(5)").each(function() {
$(this).html($(this).text().replace(new RegExp(searchbar_obj.val(), 'i'), "<mark>$&</mark>"));
$("tr").each(function() {
$(this).find("td:eq(0), td:eq(1), td:eq(2), td:eq(3), td:eq(5)").each(function() {
$(this).html($(this).text().replace(new RegExp(searchbar_obj.val(), 'i'), "<mark>$&</mark>"));
});
});
}