JSFiddle - React, Tailwind, and code Playground

by Riivr

HTML

<label>Change Password:</label>
<label id="spice"></label>
<br />
<button id="science">
Do Science
</button>

JavaScript

$("#science").on('click', function(){
	$("#spice").text("great");

});