Bootstrap 3 Tooltips or Popovers doesn't work
You just need to enable the tooltip via javascript:
$('some id or class that you add to the above a tag').tooltip()
Tooltips must be initialized with jQuery:
<a href="#" data-toggle="tooltip" title="Hooray!">Hover over me</a>
<script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
Check this link