Hi,
I am using this below code to display my menu items. On mouseover I need to display the title of the menu item and I have put that inside Title like shown below. But the title disappears after 5 seconds. And how could I possibly display the title for a long time?
<div id="menu"> <ul> <li> <asp:linkbutton id="update" runat="server" onclick="update_Click" Title="Allows you to make update on selected rows">Update</asp:linkbutton></li> <li> <asp:linkbutton id="save" runat="server" onclick="save_Click" Title="Allows you to make update on selected rows by entering values in footer row">Save</asp:linkbutton></li> <li> <asp:linkbutton id="user" runat="server" onclick="user_Click" Title="Allows you to manage permissions for the Application">User Profiles</asp:linkbutton></li> <asp:linkbutton id="help" runat="server" onclick="help_Click" Title="Need help on the Application?">Help</asp:linkbutton></li> </ul> </div>