79716407

Date: 2025-07-27 12:46:42
Score: 1.5
Natty:
Report link

Name your search input "myInput" and the body of your table "tableBody"

$("#myInput").on("keyup", function() {
    var value = $(this).val().toLowerCase();
    $("#tableBody tr").filter(function() {
    $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Gerard Olsthoorn