JSFiddle - React, Tailwind, and code Playground
HTML
<button>First</button>
<button>Second</button>
<button>Third</button>
JavaScript
$( "button" ).click(function() {
$( "body" ).replaceWith( "<div>" + $( this ).text() + "</div>" );
});
<button>First</button>
<button>Second</button>
<button>Third</button>
$( "button" ).click(function() {
$( "body" ).replaceWith( "<div>" + $( this ).text() + "</div>" );
});