'tFoot' Example : Table Foot : Table : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP


JavaScript DHTML  »  Table   » [  Table Foot  ]   
 



'tFoot' Example

Please note that some example is only working under IE or Firefox.

    
<html>
<body>
<script language="JavaScript">
function function1() {
   document.all.myTable.tHead.style.backgroundColor = "blue";
}

function function2() {
    document.all.myTable.tFoot.style.backgroundColor = "red";
}
</script>
<table id="myTable" border="1" width="500">
   <thead>
      <tr>
          <td>tHead, Cell 1</td>
      </tr>
   </thead>
   <tbody>
       <tr>
           <td>tBody, Cell 2</td>
       </tr>
       <tr>
           <td>tBody, Cell 3</td>
       </tr>
       <tr>
           <td>tBody, Cell 4</td>
       </tr>
   </tbody>
   <tfoot>
       <tr>
           <td>tFoot, Cell 5</td>
       </tr>
   </tfoot>
</table>
<button onclick="function1();">Turn Head Blue</button>
<button onclick="function2();">Turn Foot Red</button>
</body>
</html>

    
      
      
Related examples in the same category
1.  Create Table Foot
2.  Delete Table Foot
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.