onMouseover="function"
. Inside the quotes you put the function that you want to run. A sample script would look like what follows:
<HTML>
<Head>
</Head>
<Body>
<a href="index.html" onMouseOver="self.status='This is the link to the
index.';return true;">
INDEX
</Body>
</HTML>
INDEX
| Here is a list of other events: | ||
|---|---|---|
| onMouseOver="function" | Event for mouse moving over something | Used in link tags, buttons, and images |
| onClick="function" | Event for when a user clicks on a link or button | Used in link tags, and buttons |
| onLoad="function" | Event for when the page loads | Used in body tag |
| onunLoad="function" | Event for when the page unloads | Used in body tag |