Answers for "keyup search jquery"

PHP
-1

on keyup jquery

$(":input").on("keyup change", function(e) {
    // do stuff!
})
Posted by: Guest on January-06-2022
0

on keyup jquery for search php

// javascript / jquery
function searchClients() {
   var clientSearch = document.getElementById("clientSearch");
   var s = clientSearch.value;
   $('.select-options span').show();
   $('.select-options span:not(:contains("'+s+'"))').hide();
 }

$("#clientSearch").keyup(function() {
  searchClients();
});
Posted by: Guest on August-21-2021

Browse Popular Code Answers by Language