Hello,
I use this menu : http://www.stunicholls.com/menu/jquery-menutree.html
I piece of this menu is :
<li><a href="#url">MyItem</a></li>
I replace by this :
<li><%= Html.ActionLink("MyItem", "Index", "ControllerName")%></li>
I'd like show the result in "MyDiv"
<div id="MyDiv">
</div>
How can I do this ?
thanks,