JSFiddle - React, Tailwind, and code Playground
by Bongs
HTML
<input id="blueButton" type="button" value="+ Add a new Team">
JavaScript
$("#blueButton").live("click", function() {
$(this).val() == "+ Add a new Team" ? $(this).val("hide") : $(this).val("+ Add a new Team");
});