Created
February 26, 2014 11:49
-
-
Save skv-headless/9228160 to your computer and use it in GitHub Desktop.
Boostrap tooltip with hovering on it.
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
$('#projects').find('.project-row').each(() -> | |
$this = $(this) | |
$this.tooltip( | |
container: $this | |
trigger: "hover" | |
) | |
) |
Works like a charm!
This is great! Worked for me with a popover.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This worked for me. Thanks!