Last active
August 29, 2015 14:20
-
-
Save stoll/36dfed3f2bfa322f54b7 to your computer and use it in GitHub Desktop.
Tooltips Example - Bootstrap 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Tooltip example --> | |
| <button type="button" class="btn btn-default" | |
| data-toggle="tooltip" | |
| data-placement="top" | |
| title="Tooltip on top">Tooltip on top</button> | |
| <!-- The following code will enable all tooltips in the document --> | |
| <script> | |
| $(document).ready(function(){ | |
| $('[data-toggle="tooltip"]').tooltip(); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment