Last active
July 13, 2016 15:38
-
-
Save joelalejandro/96464a5ca3aa236acde7fe80ad7e6bb1 to your computer and use it in GitHub Desktop.
A basic Bootstrap Popover implementation.
This file contains 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
<!-- Somewhere in the page --> | |
<a href="#" | |
data-toggle="popover" | |
data-content="Fill out the required data to deploy your app. Don't forget to increment the version number."> | |
What do I do here? | |
</a> | |
<!-- Somewhere in the end of the page --> | |
<script> | |
$('[data-toggle="popover"]').popover(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment