JavaScript Assignment #8

Basic Rollover

This assignment is an introduction to JavaScript events and event handlers and the concepts necessary to build a basic rollover.

  1. Create a basic page in html that displays an image.
  2. When the user places a cursor over the image, use the onMouseOver event to replace the image with a different image.
  3. When the user removes the cursor from the image, use the onMouseOut event to return it to its original state

Next assignment ... Assignment #9