sur Keyup jQuery pour rechercher PHP sur la base du nom de la classe

// Jquery searching in table TD TR without DB (Front-end)
    $("#clientSearch").keyup(function() {
      var value = this.value.toLowerCase().trim();
      $("table tr").each(function (index) {
          if (!index) return;
          $(this).find("td").each(function () {
              var id = $(this).text().toLowerCase().trim();
              var not_found = (id.indexOf(value) == -1);
              $(this).closest('tr').toggle(!not_found);
              return not_found;
          });
      });
    });
Nipun