August 1999
Intermediate to advanced
1488 pages
72h 53m
English
Event.MOUSEOUT
The MOUSEOUT property of the Event object is used by links and document layers to indicate when the focus of the mouse cursor is moved away from an object.
Listing 7.231 shows how the onMouseOut event handler is used to catch the MOUSEOUT event that occurs when the mouse cursor is removed from a HTML link.
<html>
<head>
<title>Example of Event.MOUSEOUT</title>
</head>
<body>
<a href="http://www.microsoft.com" onMouseout = 'alert("The mouse has moved out
of the area of this link")'>
Microsoft Website</a>
</body>
</html>
|
Read now
Unlock full access