views:

130

answers:

2

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]
A: 

It could be the plugin, but without your code it is impossible to determine the issue. I have written a tooltip/hovertip jQuery plugin which supports full HTML contents (images, text with html markup, etc...) It can be found at the link below.

http://plugins.jquery.com/project/hovertiphtml

a432511
A: 

Please refer to this question, http://stackoverflow.com/questions/1814387/jquery-tools-tooltip-issue

Rich Blumer