I am trying to get the tipsy plugin working and can't seem to do it with dynamic id's. this is the code I was trying to use.
jQuery(document).ready(function(){
jQuery("a#[id^='pro_']").each(function(){
jQuery("a#[id^='pro_']").tipsy({gravity: jQuery.fn.tipsy.autoNS,live: 'true'});
});
});
a link would look someting like <a id="pro_1" title="some value" href="link.html">My Link</a>
Not sure if the jquery is correct but I tried it several ways. Thanks