I\'m using tooltips from Twitter Bootstrap package to show items information on the page. Sometimes information is changed, and needs to be updated in the tooltip. I tried s
This technique did not work for me so I found an answer, hidden in one of the comments of a similar question.
the cleanest way to update the display text of the tooltip
$(element).attr('title', 'NEW_TITLE').tooltip('fixTitle').tooltip('show');
Thank you to lukmdo