New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnClientMouseOver

The mouseOver event is fired when the user moves the mouse pointer over the control.

The event handler receives two parameters:

  1. The instance of the clicked RadLinkButton control

  2. An eventArgs parameter of type Telerik.Web.UI.ButtonEventArgs.

Example 1: Handling OnClientMouseOver event in RadLinkButton.

<script type="text/javascript">
    function mouseOver(sender, args) {
        window.alert("You have moved mouse over the button");
    }
</script>
<telerik:RadLinkButton ID="RadLinkButton1" runat="server" Text="Navigate to Page" OnClientMouseOver="mouseOver" NavigateUrl="https://www.telerik.com">
</telerik:RadLinkButton>

See Also

In this article