Table Cell 'background' Example : Cell : Table JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Table » Cell »

 

Table Cell 'background' Example



    
<html>
<head>
<script>
    function function1() {
        document.all.myTD.background = "http://www.navioo.com/style/logo.png"
    
    function function2() {
        document.all.myTD.background = "";
    
</script>
</head>
<body bgcolor="white" text="white">
<table>
   <tr> 
      <td id="myTD" height="79" bgcolor="green">Cell content</td>
      <td height="79">Cell content</td>
      <td height="79">Cell content</td>
   </tr>
</table>
<input type="button" name="button2" value="Add background image to Cell 1" onClick="function1();">
<input type="button" name="button3" value="Remove background image" onClick="function2();">
</body>
</html>

    
      
      



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Table
» Cell