I have 3 tooltips. I want them to appear in the click, so I used the following:
$('[data-toggle="tooltip"]').tooltip({
trigger : 'click'
});
So, when I click on the first one, for example, it displays the tooltip.
However, I want when I click on a tooltip it activates the same one and deactivates others that are active.
Does anyone know how to help me?