Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9167265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:20:53+00:00 2026-06-17T15:20:53+00:00

I need to style the table as a zebra, styling even rows of tables,

  • 0

I need to style the table as a zebra, styling even rows of tables, I used the css :nth-of-type(even). But for example when I need to hide some of the stylized elements of the table is lost. What’s the easiest way to create a dynamic styling as a zebra for a table?

<!DOCTYPE html>
<html>
<head>
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  <style type="text/css">
    table tr:nth-of-type(even){background: yellow;}
  </style>
  <script type="text/javascript">
    function hideRow(){
      $(".hidden").hide();
    }
  </script>
</head>
<body>
<center>
 <table cellspacing="0" border="1">
     <tbody>
    <tr class="table-row">
      <td>row1</td>
    </tr>
    <tr class="table-row">
      <td>row2</td>
    </tr>
    <tr class="table-row hidden">
      <td>row3</td>
    </tr>
    <tr class="table-row">
      <td>row4</td>
    </tr>
    <tr class="table-row">
      <td>row5</td>
    </tr>
    </tbody>
 </table>
 <input type="submit" onclick=" hideRow()" value="submit"/> 
 </center>
</body>
</html>

How can I dynamically change the style of the table?

Сurrent result:
enter image description here
enter image description here

Expected result:
enter image description here
enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T15:20:54+00:00Added an answer on June 17, 2026 at 3:20 pm

    When you hiding elemment, its still there (just hidden), so thats why you have this problem.
    Ill suggest you to create simple script against css :nth-of-type(even) selectors. First, two clases:

    .table_odd { color: yellow; } 
    .table_even {color: white; }
    

    Now crete function:

    function refrestTableColoring( $tableSelector ) {
        $tableSelector.find('tr:odd:not(.hidden)').removeClass('table_even').addClass('table_odd');
        $tableSelector.find('tr:even:not(.hidden)').removeClass('table_odd').addClass('table_even'); 
    }
    

    And then usage is simple. Call on document ready and when you’re hiding element:

    refrestTableColoring( $('table') );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a tr:table that I need to style using CSS. All the normal
I need to color a table in zebra style, and then when I click
newbie question in css: I have the following style defined: TABLE.tabulardata th { font:
I need to create a large table of contents for an HTML book but
I need to style an entire column in a table. The column should correspond
I need to pull several rows from a table and process them in two
I print a table and in one of the td I need to style
I need to respond to a hover over a table cell. This css code
I got an ADF table generated form my data controls. But I need to
is it possible to set the style of alternating rows in a html table

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.