I have a Django application with the front-end designed in Twitter Bootstrap 3. All of the my styling and JS is working fine including the modals, etc... But I cannot for the life of me get the tooltips of popovers to do anything....
I am not throwing any errors in Firebug.
Here is the order of my includes:
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="{{ STATIC_URL }}js/bootstrap.min.js"></script>
Here is my an example call for the tooltip I took straight from the bootstrap site:
<a href="#" data-toggle="tooltip" title="first tooltip">Hover over me</a>
Anyone else have trouble with the 2 elements?
I am fairly certain it is something dumb I've done.
All other JS affects provided in Bootstrap 3 like the modals & tabs are working fine...
Tooltips must be initialized with jQuery:
Check this link
You just need to enable the tooltip via javascript: