I want to manipulate a tooltip or popover after it is created with twitter bootstrap. As far as i know there isn't a build in way to do this.
$('#selector').popover({
placement: 'bottom'
});
For example lets say i want to move the created tooltip up 5px and left 5px from it's calculated location. Any ideas on the best way to do this?
This is what i'd like to do:
$('#selector').popover({
placement: 'bottom',
callback: function(){
alert('Awesome');
}
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…