I am using ASP.NET MVC for my application. I would like to get a menu popup with additional information about an item.

Here's an example:

<%For Each item In Model%>

    <p></p>
          <%Html.Encode(item.Name)%>

    <p></p>

    <div id="popupmenu">  
         <%Html.Encode(item.Name)%> 
    </div>  

<%Next %> 

I tried to use HoverMenu Control from Ajax Library but I get menu only for one item as it is tied to control's ID. It was easy in ASP.NET but I can't figure out in MVC.

I know very little about Ajax an jQuery so small example would be great.

Thank you in advance for your help.

  • No Related Post