Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Dec 02, 2009 07:42 AM by currentspulledmeunder
0 Points
1 Post
Dec 01, 2009 09:18 PM|LINK
I would like to add a tool tip to my menu items is this possible with HTML code?
<ul id="menu"> <li><%= Html.ActionLink("Home", "Index", "Home")%></li> </ul>
Thanks
menu item
All-Star
155645 Points
19985 Posts
Moderator
MVP
Dec 01, 2009 09:39 PM|LINK
<%= Html.ActionLink("Home", "Index", "Home", new{title="My ToolTip"})%>
Member
168 Points
78 Posts
Dec 02, 2009 07:42 AM|LINK
You might also look at extending the html code with some jquery tooltip plugin and css. Here's a good example.
dwelford
0 Points
1 Post
ASP.NET MVC - Menu Items
Dec 01, 2009 09:18 PM|LINK
I would like to add a tool tip to my menu items is this possible with HTML code?
<ul id="menu"> <li><%= Html.ActionLink("Home", "Index", "Home")%></li> </ul>Thanks
menu item
Mikesdotnett...
All-Star
155645 Points
19985 Posts
Moderator
MVP
Re: ASP.NET MVC - Menu Items
Dec 01, 2009 09:39 PM|LINK
<%= Html.ActionLink("Home", "Index", "Home", new{title="My ToolTip"})%>
Web Pages CMS | My Site | Twitter
currentspull...
Member
168 Points
78 Posts
Re: ASP.NET MVC - Menu Items
Dec 02, 2009 07:42 AM|LINK
You might also look at extending the html code with some jquery tooltip plugin and css. Here's a good example.