I want to change placement of a Bootstrap tooltip on a text box after it has been already initialized:
// these don\'t work $(\'#myTextbox\').tooltip({ place
In Bootstrap 2.x, the answer is as ajbeaven states:
$('#myTextbox').data('tooltip').options.placement = 'right';
However, from Bootstrap 3, all Bootstrap data is namespaced with bs:
bs
$('#myTextbox').data('bs.tooltip').options.placement = 'right';