JSFiddle - React, Tailwind, and code Playground
by kiokotzu
HTML
<button>hola</button>
<button>esteban</button>
JavaScript
$(document).ready(function(){
$('button').hover(function() {
var texto = $('button').text();
$(this).text('Registrese');
}, function() {
$(this).text(texto);
});
});