JSFiddle - React, Tailwind, and code Playground
by neonms92
HTML
<button>?</button>
JavaScript
$('button').on('mouseover', function() {
$('button').html('!');
}).on('mouseout', function() {
$('button').html('...');
});
by neonms92
<button>?</button>
$('button').on('mouseover', function() {
$('button').html('!');
}).on('mouseout', function() {
$('button').html('...');
});