Attributes for <A ...>
onMouseOver = "script command(s)"
onMouseOut = "script command(s)"
<A ...>Looking for Information on Rollover Images?
You might want to check out our rollover images tutorial.onMouseOveronMouseOutSo, for example, this code displays an alert box when the mouse moves over the link:
| this code | produces this |
<A
HREF="omoexample.html"
onMouseOver="alert('my alert box')">my page</A>
|
my page |
This code displays an alert box when the mouse moves out from the link:
| this code | produces this |
<A
HREF="omoexample.html"
onMouseOut="alert('my alert box')">my page</A>
|
my page |
Copyright 1997-2002 Idocs Inc.
