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
Ahh, found the answer:
$('#myTextbox').data('tooltip').options.placement = 'right';