The code to create tooltip by using bootstrap is as follows :
<!-- Start ToolTip -->
<div class="container">
<h3>Tooltip
Example</h3>
<p>Tooltips
are not CSS-only plugins, and must therefore be initialized with jQuery: select
the specified element and call the tooltip() method.</p>
<a
href="#" data-toggle="tooltip"
data-placement="top" title="Hooray!">Hover over
me</a>
</div>
<!-- End ToolTip -->
<script>
$(function
() {
$('[data-toggle="tooltip"]').tooltip()
})
</script>