The following code shows how to control Tooltip via Javascript.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet"
href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script type="text/javascript"
src="http://code.jquery.com/jquery.min.js"></script>
<script
src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){<!-- ww w. j a v a 2 s . c o m-->
$(".show-tooltip").click(function(){
$(".tooltip-examples a").tooltip('show');
});
$(".hide-tooltip").click(function(){
$(".tooltip-examples a").tooltip('hide');
});
$(".toggle-tooltip").click(function(){
$(".tooltip-examples a").tooltip('toggle');
});
$(".destroy-tooltip").click(function(){
$(".tooltip-examples a").tooltip('destroy');
});
});
</script>
<style type="text/css">
.bs-example {
margin: 60px;
}
</style>
</head>
<body>
<div class="bs-example">
<p class="tooltip-examples">
<a href="#" data-toggle="tooltip" title="This is default title">Tooltip
Example</a>
</p>
<div>
<p>Click on the following buttons to control the tooltip
manually.</p>
<input type="button" class="btn btn-primary show-tooltip"
value="Show">
<input type="button"
class="btn btn-warning hide-tooltip" value="Hide">
<input
type="button" class="btn btn-success toggle-tooltip" value="Toogle">
<input type="button" class="btn btn-danger destroy-tooltip"
value="Destroy">
</div>
</div>
</body>
</html>