I'm using this jQuery Tooltip plugin: http://docs.jquery.com/Plugins/Tooltip
I create tooltips for all links when the document is ready, like that:
$(function() {
$('a').tooltip();
}
But when I add some links to the document later, the plugin wouldn't display jQuery tooltip on them.
I supposed that when I call $('a').tooltip();
again after I created those new links, jQuery will create tooltips for them too. It won't, it'll even ruin all jQuery tooltips I have.
How can I create tooltips on newly created links? Is it possible to release the current tooltips and call it again on all links or something like that? Or can I create the tooltips for links that haven't been created yet?