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

Change Mouse Pointer on MenuItem Hover

This example shows how to change the mouse pointer to a "hand" pointer on menu item hover.

You need to add this CSS rule in the

section of the page:
<style type="text/css">
    .RadMenu_Default .rmLink:hover
    {
        cursor: pointer;
    }
</style>
In this article