Answer by
emstorm73 (26)
The "hover" event is known as "onMouseOver". So, to activate some script function on hover, add the following to the HTML tag you want to hover: onMouseOver='javascriptFunctionGoesHere(event);' Sending along the event object gives you access to lots of information about what was hovered over, so you can reuse your function. This is for straight Javascript, not a library like jQuery.