I'm using the tipsy jquery plugin to create tooltips for dynamically appearing elements.
The tooltips work on non-dynamic elements, so I've definitely included everything that I need. I'm using jquery 1.5.1
This is my jquery code: $('.voted-user-image').tipsy({gravity:'s', live: true});
This is the html of an image link element that appears dynamically in a div after a link is clicked that triggers an AJAX request:
<a href="/profiles/2" class="voted-user-image" title="Test">
<img alt="Justin meltzer" src="/system/photos/2/tiny/Justin Meltzer.jpeg?1306836552">
</a>`
How can I get this tooltip plugin to work?
title
from link – Judijudicabletitle
attribute, that's where it pulls the text from to place in the tooltip – Sericin