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)
});
by Eric L
<button id="submitLoadBtn">
hello
</button>
$("#submitLoadBtn").click(function(event) {
alert('here');
$("#submitLoadBtn").prop("disabled",true)
});