A javascript method to be executed on the client each time the user mouses over a new rating.

public virtual string OnMouseOverJScript {get; set;}

Remarks

The method specified is passed three parameters in this order: the ClientID, RatedID, and the moused-over rating.

Example

Here is an example javascript function handling this client-side event:

function handleMouseOver (clientID, ratedID, rating)
{
    document.getElementById(ratedID + "_span").innerText = rating;
}

See Also

SlickRater Class | KrispWare Namespace