I'm tring using bootstrap and I'm trying to implement popover effect on a link. Here is the code for the link
<a href="#" class="btn btn-danger" rel="popover" title="Title of popover" data-content="some text to display">Link popover</a>
And here is the js code that I'm using on the bottom of the page
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-tooltip.js"></script>
<script src="js/bootstrap-popover.js"></script>
Nothing happen I can just see the title in the normal tooltip window. Any idea ? Thanks
have you added this line of code ?
$('.btn-danger').popover();