RadMenu for ASP.NET AJAX

RadControls for ASP.NET AJAX

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 <HEAD> section of the page:

CopyASPX
<style type="text/css">
    .RadMenu_Default .rmLink:hover
    {
        cursor: pointer;
    }
</style>