chnselim
chnselim

Reputation: 254

Bootstrap 3 tooltip hide

I've a tooltip on a button in a bootstrap dropdown and whenever i click that button, i am hiding the button and showing another button. But previous button's tooltip does not hide until i moved the scroll vertically or horizontally.

<a (click)="hideThis();"
   rel="tooltip" data-title="Düzenle"
   data-placement="left"></a>

I don't think it's a trigger: focus problem because like i said when i moved the scroll, it disappears.

Thanks.

Upvotes: 1

Views: 511

Answers (1)

Shrinivas Pai
Shrinivas Pai

Reputation: 7701

The problem was that focus stays on the button after button hide. Change trigger to hover for all the tooltip will solve your problem.

$(document).ready(function(){
    $('[rel=tooltip]').tooltip({ trigger: "hover" });
});

Upvotes: 1

Related Questions