JSFiddle - React, Tailwind, and code Playground

by matthewbj

HTML

<button id="create-account-btn">Create Account</button>

<br>
<br>
<br>

<div id="create-account" style="display:none">Create Account Div</div>

JavaScript

jQuery('#create-account-btn').live('click',function(){
    jQuery('#create-account').show();
    jQuery(this).hide();
  });