JavaScript DOM Background Color Change

This exercise will change the picture and background color to alternatives once clicked.
You can change them back by clicking on the "change back " button.

JavaScript Code Example
  1. <script type="text/javascript">
  2. function changeBoth(value) {
  3. document.bgColor="#CBFCAB";
  4. document.offImage.src="../images/Thumbails1.jpg";
  5. }
  6. function changeBack() {
  7. document.bgColor="#ffffff";
  8. document.offImage.src="../images/Thumbails2.jpg";
  9. }
  10. </script>
thumb Click on the image to change. Click on the button to change back.