I have a tooltip on an anchor element, that sends an AJAX request on click. This element has a tooltip (from Twitter Bootstrap). I want the tooltip content to change when th
For bootstrap 3.x
This seems like cleanest solution:
$(element) .attr('data-original-title', 'New title').tooltip('show')
Show is used to make title update right away and not wait for tooltip to be hidden and shown again.