Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 12 down vote accepted

Ahh, found the answer:

$('#myTextbox').data('tooltip').options.placement = 'right';
share|improve this answer
1  
Brilliant...I needed to change the title, and this ".data('tooltip').options.title = message" really helped...thanks! – timborden May 10 '12 at 12:00
Can you consider my situation: I launch my tooltip on hover event. Then I changed title with this trick (checked through the console), but the tooltip was not immediately re-rendered. It still had an old title (all time the tooltip was visible). What should I do to re-render the tooltip after initialisation? – JuliaCesar Dec 4 '12 at 11:55
My first suggestion would be not to initialise the tooltip on hover, but when the element that you're hovering over is rendered. If you can't or won't do that, then do something hacky like $('.element').tooltip('hide'); $('.element').tooltip('show'); or manually change the tooltip content yourself. – ajbeaven Dec 4 '12 at 22:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.