JSFiddle - React, Tailwind, and code Playground

by neonms92

HTML

<button>?</button>

JavaScript

$('button').on('mouseover', function() {
    $('button').html('!');
}).on('mouseout', function() {
    $('button').html('...');
});