I would like the tooltip to display time. For this I update it every somemany seconds but changing the title every time.
$(".track a").tooltip('hide');
$(".track a").data('tooltip').options.title = time;
$(".track a").tooltip('show');
This works but the tooltip is flickering but without the hide and show the tooltip doesn't update. Is there a way to update the tooltip without hiding and showing it?
Thanks!