Created
March 2, 2012 14:43
-
-
Save kimroen/1958824 to your computer and use it in GitHub Desktop.
Forsøk på å endre farge på tooltip ved click
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
$("#main-button").tooltip(); | |
$("#main-button").click(function() { | |
$(this).tooltip('hide'); | |
// css-endringer eller sette på ny klasse | |
$(".tooltip-inner").css('background-color', 'red'); | |
$(this).tooltip('show'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment