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({ placement: 'left' });
$('#myTextbox').tooltip('options', 'placement', 'right' });
Is there any way to do it? If so, what am I doing wrong?