August 1999
Intermediate to advanced
1488 pages
72h 53m
English
Event.MOUSEOVER
The MOUSEOVER property of the Event object is used by links and document layers to indicate when the mouse cursor is moved over an object.
Listing 7.232 shows an example of how the MOUSEOVER event property can be used to modify form element values. As the user moves the mouse cursor over the link, the MOUSEOVER event is captured and the user is alerted.
<html> <head> <title>Example of Event.MOUSEOVER</title> </head> <body> <script language="JavaScript"> <!--Hide // sets up the window to capture MOUSEOVER events window.captureEvents(Event.MOUSEOVER); // function that handles the ... |
Read now
Unlock full access