A javascript method to be executed on the client each time the user mouses over a new rating.
The method specified is passed three parameters in this order: the ClientID, RatedID, and the moused-over rating.
Here is an example javascript function handling this client-side event:
function handleMouseOver (clientID, ratedID, rating)
{
document.getElementById(ratedID + "_span").innerText = rating;
}
SlickRater Class | KrispWare Namespace