JSFiddle - React, Tailwind, and code Playground

HTML

<a title="hello">one</a> <a title="world">two</a> <a title="!">three</a><br>
<input type="checkbox" id="showAll"> Show all tooltips

JavaScript

// This works
$('a').tooltip();

// This doesn't work
$('#showAll').click(function(){
    $( 'a' ).tooltip("open");
});