Itβs good that the problem was somewhere else.
In any case, now I use it because it changes all components that need a hint, in which the one above only changes one component.
$(".track a").tooltip('hide') .attr('data-original-title', time) .tooltip('fixTitle') .tooltip('show');
You need to set the animation to false when initializing the tooltip:
$(".track a").tooltip({ 'animation' : false });
source share