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
you can update the tooltip text without actually calling show/hide:
$(myEl) .attr('title', newTitle) .tooltip('fixTitle') .tooltip('setContent')