Answers for "find table element jquery"

2

jquery for table Show entries

$(document).ready(function() {
    $('#example').DataTable( {
        "lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]]
    } );
} );
Posted by: Guest on April-13-2020
1

search in a table jquery

<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>
Posted by: Guest on October-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language