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
$(document).tooltip();

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