Linked Questions

Popular Questions

my input tag

<script>
$(document).ready(function () {
        $("#MyInput").on("keyup", function () {
            var value = $(this).val().toLowerCase();
            $("#myTablee tr").filter(function () {
                $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
            });
        });
    });
    </script>
<input class="form-control" id="MyInput" type="text" placeholder="search">

"> this code returns only data filtered in the current page and i want to return all data in the same pagination

Related Questions