Click here to Skip to main content
15,884,176 members
Articles / Programming Languages / Javascript
Tip/Trick

Filter HTML table

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
27 Mar 2013CPOL 21.7K   4   1
Select only those rows in table which meet search criteria.

Introduction

In this post I will tell you how you can filter an HTML table using jQuery.  

Using the code

All you need is create an HTML table and a textbox. The search function will be called on the textbox's onkeyup event. Here is the function: 

JavaScript
function Search() {
    var value = $('input[id$="txtSearch"]').val();
    if (value) {
        $('#MyTable tr:not(:first)').each(function () {
            var index = -1;
            $(this).children('td').each(function () {
                var text = $(this).text();
                if (text.toLowerCase().indexOf(value.toLowerCase()) != -1) {
                    index = 0;
                    return false;
                }
            });
            if (index == 0)
                $(this).show();
            else
                $(this).hide();
        });
    }
    else
        $('#MyTable tr').show();
}
XML
<input type="text" onkeyup="Search()" id="txtSearch" /> 

This function checks if the input criteria matches the text of any td, it makes the row visible and if input criteria is not found in whole row, then that row is hidden. If there is no value in input criteria all table rows are displayed. 

This is a very basic code. Any suggestions will be greatly appreciated. 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer F3 Technologies
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionhighly inefficient code Pin
Seishin#30-Dec-12 22:21
Seishin#30-Dec-12 22:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.