[jQuery] [tooltip] dynamic text in tooltip
Hi, in december 2006, a user Taka, posted this workaround to enable
the display of dinamic text in the tooltip:
if( settings.injectFunc ){
oldTitle = title = settings.injectFunc(source);
} else {
oldTitle = title = source.attr('title');
}
$("label").Tooltip({injectFunc:myFunction});
Currently i need this functionality, but i can't figure out where to
add that code, in the save method.
Is this feature already incorporated?
If not, where should i add the above code? (it seems that the code
doesn't match the current version of the plugin)
Many thanks,
Daniel