Skip to content

Instantly share code, notes, and snippets.

$("#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');
});