'bgColor' Example : bgColor : Javascript Properties : JavaScript Reference examples (example source code) Organized by topic

JavaScript Reference
C++
PHP
JavaScript Reference Home »  Javascript Properties   » [  bgColor  ]   
 



'bgColor' Example

    
<html>
<head>
<script>
    function function1() {
        document.all.myCell.bgColor = "red";
    }
    function function2() {
        document.all.myCell.bgColor = "";
    }
</script>
</head>
<body bgcolor="#EEEEEE">
<table>
   <tr>
       <td id="myCell" height="79">Cell content</td>
       <td height="79">Cell content</td>
       <td height="79">Cell content</td>
       <td height="79">Cell content</td>
       <td height="79">Cell content</td>
       <td height="79">Cell content</td>
       <td height="79">Cell content</td>
       
   </tr>
</table>
<input type="button" value="Add background color to Cell 1" onClick="function1();">
<input type="button" value="Remove background colors" onClick="function2();">
</body>
</html>

    
      
      
Related examples in the same category
1.  'bgColor' Syntax and Note
2.  'bgColor' is applied to
























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