JSFiddle - React, Tailwind, and code Playground

by Marventus

HTML

<p id="pbutton">Preview here: </p>
<input id="preview_button" type="button" value="Preview" />

JavaScript

jQuery(function() {
    jQuery('#preview_button').click(function() {
        var pVal = jQuery('#pbutton').text()+" It Works!";
        jQuery('#pbutton').text( pVal );
    })
})