Bootstrap tooltips not working

To sum up: activate your tooltips using jQuery selectors

<script type="text/javascript">
    $(function () {
        $("[rel="tooltip"]").tooltip();
    });
</script>

In fact, you don’t need to use the attribute selector, you can invoke it on any element even if it doesn’t have rel="tooltip" in its tag.

Leave a Comment