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

This commit is contained in:
Yohann D'ANELLO 2020-08-06 20:19:29 +02:00
parent fd2f426f55
commit 86ff23357c
1 changed files with 4 additions and 0 deletions

View File

@ -57,6 +57,10 @@
window.document.location = $(this).data("href");
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>"));
});
}
init();