JSFiddle - React, Tailwind, and code Playground

by Eric L

HTML

<button id="submitLoadBtn">
hello
</button>

JavaScript

$("#submitLoadBtn").click(function(event) {
  alert('here');
  $("#submitLoadBtn").prop("disabled",true)

});