Created
May 18, 2013 12:14
-
-
Save andreaseriksson/5604219 to your computer and use it in GitHub Desktop.
BOOTSTRAP Popover & Tooltip
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
<script> | |
$(function(){ | |
//Tooltip | |
$("a[data-toggle=tooltip], span[data-toggle=tooltip], .tip").tooltip(); | |
//Popover | |
$("a[data-toggle=popover], .info").popover().click(function(e) { | |
e.preventDefault() | |
}); | |
}); | |
</script> | |
<!-- Popover --> | |
<a href="#" class="btn" data-toggle="popover" title="A Title" data-content="Popover kontent" data-html="true" data-position="top" | |
>Click to toggle popover</a> | |
<!-- Tooltip --> | |
<a href="#" data-toggle="tooltip" title="first tooltip">hover over me</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment