admin管理员组文章数量:1317915
With bootstrap popovers, you are able to control when to hide and show them on any element
<span id="span">Click me</span>
<script>
$('#span').click(function(){
$(this).popover({
title: 'some title',
content: 'nice popover',
trigger: 'manual',
placement:'top',
html: true
}).popover('show');
clickedAway = false
isVisible = true
});
$(document).click(function() {
if(isVisible & clickedAway){
$('#span').popover('hide')
isVisible = clickedAway = false
}else{
clickedAway = true
}
});
</script>
How can I acplish the same with bootstrap tooltips? The difference with popovers and tooltips seems to be that tooltips are initiated on DOM load and popovers can be initiated manually from an event listener.
With bootstrap popovers, you are able to control when to hide and show them on any element
<span id="span">Click me</span>
<script>
$('#span').click(function(){
$(this).popover({
title: 'some title',
content: 'nice popover',
trigger: 'manual',
placement:'top',
html: true
}).popover('show');
clickedAway = false
isVisible = true
});
$(document).click(function() {
if(isVisible & clickedAway){
$('#span').popover('hide')
isVisible = clickedAway = false
}else{
clickedAway = true
}
});
</script>
How can I acplish the same with bootstrap tooltips? The difference with popovers and tooltips seems to be that tooltips are initiated on DOM load and popovers can be initiated manually from an event listener.
Share Improve this question edited Nov 19, 2012 at 10:08 dcd0181 asked Nov 19, 2012 at 9:44 dcd0181dcd0181 1,5034 gold badges29 silver badges52 bronze badges1 Answer
Reset to default 6As I understand it you can call:
$('#id').tooltip({
...config...
});
$('#id').tooltip('show');
At any point?
本文标签: javascriptInitiate Bootstrap tooltip manuallyStack Overflow
版权声明:本文标题:javascript - Initiate Bootstrap tooltip manually - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742024806a2415340.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论