Filter html table useing javascript

علی ذوالفقار
1399/08/25 17:08:24 (677)
< script >
$(document).ready(function(){
$("#myInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#myTable tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
< /script >
Back