I have a link with a background image that uses the jQuery tooltip on a list. There are multiples of these on a page (for example 20). The first one works just fine but the remaining tooltips do not work. Any thoughts on how to resolve this issue? Thanks in advance.
Here s my code (I am using NHAML as my viewengine):
%script{language="Javascript"}
$(document).ready(function(){
$("#download_now").tooltip();
});
%a{id="download_now"}
%div{id="tooltip" class="tooltip"}
-string bulletSep = "|";
-string[] bulletList = job.Requirements.Split(bulletSep.ToCharArray(),
StringSplitOptions.RemoveEmptyEntries);
%ul
-for (int i = 0; i < bulletList.Length; i++)
%li =bulletList[i]