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
I couldn't get any of the answers working, here's a workaround:
$('#'+$(element).attr('aria-describedby')+' .tooltip-inner').html(newTitle);