Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keep Twitter Bootstrap Tooltip open on mouseleave

For a particular case and element I need to show Bootstrap Tooltip by default (once the page is loaded) an always keep it open (even on mouseover and mouseout).

That's the code I use to open tooltip by default on the element:

$('#myelement').tooltip('show');

Now I'm not sure how to prevent/disable the default action of tooltip on mouseover & mouseout. Any idea?

Thanks in advance!

like image 423
John Avatar asked Mar 26 '13 01:03

John


Video Answer


2 Answers

Solution found. Manual Trigger does the trick - here is the updated code:

$('.taskTooltip').tooltip({trigger: 'manual'}).tooltip('show');
like image 73
John Avatar answered Oct 13 '22 18:10

John


Use unbind() after show : it will remove all event handler and thus the tooltip won't hide on mouseleave

$(".circle").tooltip("show");
$(".circle").unbind();
.circle{
margin-left:100px;
margin-top:80px;
width:10px;
height:10px;
background-color:#0088ff;
border-radius:50%;
border:1px solid #ff8800;

}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<div class="circle" data-toggle="tooltip" data-placement="top" title="Hello World !"></div>
like image 32
PhilMaGeo Avatar answered Oct 13 '22 19:10

PhilMaGeo