Toggle Strips : Table « jQuery « JavaScript DHTML






Toggle Strips

  
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

               $("table tr:nth-child(even)").addClass("striped");

           
        });
        function swap() {
           $('tr').toggleClass('striped');
        }    
    </script>
    <style>
      body,td {
        font-size: 10pt;
      }
      table {
        background-color: black;
        border: 1px black solid;
        border-collapse: collapse;
      }
      th {
        border: 1px outset silver;
        background-color: maroon;
        color: white;
      }
      tr {
        background-color: white;
        margin: 1px;
      }
      tr.striped {
        background-color: coral;
      }
      td {
        padding: 1px 8px;
      }
    </style>
  </head>
  <body>
    <body>
            <table onmouseover="swap()" onmouseout="swap()">
      <tr>
        <th>Year</th>
        <th>Make</th>
        <th>Model</th>
      </tr>
      <tr>
        <td>1997</td>
        <td>Chrysler</td>
        <td>Jeep</td>
      </tr>
      <tr>
        <td>2000</td>
        <td>Chrysler</td>
        <td>Jeep</td>
      </tr>
      <tr>
        <td>2005</td>
        <td>Chrysler</td>
        <td>Jeep</td>
      </tr>
      <tr>
        <td>2007</td>
        <td>Dodge</td>
        <td>Addf</td>
      </tr>
    </table>

    </body>
</html>

   
    
  








Related examples in the same category

1.Add column to a table
2.Change table row background
3.Use for each function to loop through table row
4.Strip a table
5.To add a special style to table cells that are being hovered over,
6.To toggle a style on table cells:
7.Fade in a table
8.If table row has table data cell
9.Finds all table cell that are empty - they don't have child elements or text.
10.Finds odd table rows, matching the second, fourth and so on
11.Finds the first table row.
12.Finds the third td.
13.Choose the third table cell
14.Remove a table
15.Empty all table data
16.Clone table row
17.Table data hover
18.Append to table body
19.Add table row to table body
20.Append value to table body