[jQuery] [tooltip] dynamic update

[jQuery] [tooltip] dynamic update


Hi, I need to update tooltips dynamically, but has no easy way for
this. After rummage jquery.tooltip.js I
found them, just add following lines at beginning save() method:
        if (this.title)
        {
            this.tooltipText = this.title;
            $(this).removeAttr("title");
        }
and then use dynamic titling with nature way:
$("#id").attr('title', 'New title');
if it's possible - add this trick to jquery.tooltip.js, thanx!