You can show, hide or toggle a tooltip programmatically:

{% highlight javascript %} const instance = new Tooltip(referenceElement, { title: "Hey there", trigger: "click", }); instance.show(); {% endhighlight %}