Evince

JS

In order to use this plugin on your page you will need to include the following script in the page.


<script src="plugins/popper/js/popper.min.js"></script>
                                        

Enable popovers everywhere

One way to initialize all popovers on a page would be to select them by their data-toggle attribute:


$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})
                                        

Basic


<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="top" title="Tooltip on top">
    Tooltip on top
</button>
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="right" title="Tooltip on right">
    Tooltip on right
</button>
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="bottom" title="Tooltip on bottom">
    Tooltip on bottom
</button>
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="left" title="Tooltip on left">
    Tooltip on left
</button>