Highlight Alternate Column Color in a Table using jQuery

If you want to highlight alternate columns of a table using jQuery, use this simple jQuery


    <script type="text/javascript">

        $(document).ready(function() {

        $("#GridView1 tr td:nth-child(even)")

         .css("background", "gray");

        });

 

    </script>



where GridView1 is the id of the table.




About The Author

Suprotim Agarwal
Suprotim Agarwal, Developer Technologies MVP (Microsoft Most Valuable Professional) is the founder and contributor for DevCurry, DotNetCurry and SQLServerCurry. He is the Chief Editor of a Developer Magazine called DNC Magazine. He has also authored two Books - 51 Recipes using jQuery with ASP.NET Controls. and The Absolutely Awesome jQuery CookBook.

Follow him on twitter @suprotimagarwal.

1 comment:

Unknown said...

Hi, it's a nice script, but the hover state for cells doesn't work when you apply it :/ otherwise it's great. Do you know what I should do to modify it?