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
Adding to Ben Cox's response, in Bootstrap 4 use:
$('#myTextbox').data('bs.tooltip').config.placement = 'right';