Created
August 5, 2013 08:03
-
-
Save venblee/6154186 to your computer and use it in GitHub Desktop.
Bootstrap-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> | |
$(document).ready(function () | |
{ | |
$("a").tooltip({ | |
'selector' : '' , | |
'placement' : 'bottom' | |
}); | |
}); | |
</script> |
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
<a data-toggle"tooltip" class="" title="Your tool tip text goes here">Click Here !!</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment