'background' Example : background « Javascript Properties « JavaScript Reference

Home
JavaScript Reference
1.Event Handlers Reference
2.Javascript Collections
3.Javascript Methods
4.Javascript Objects
5.Javascript Properties
JavaScript Reference » Javascript Properties » background 




'background' Example

    
<html>
<head>
<script>
    function function1() {
        document.all.myCell.background = "yourimage.gif"
    
    function function2() {
        document.all.myCell.background = "";
    
</script>
</head>
<body bgcolor="white" text="white">
<table>
   <tr> 
      <td id="myCell" 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>

    
      
      














Related examples in the same category
1.'background' Syntax and Note
2.'background' is applied to
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.