JSFiddle - React, Tailwind, and code Playground

by Amitabha Ghosh

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" async="async"></script>
<button id="java">
Click
</button>

JavaScript

$("#java").on('click',function(){
$(this).html("I am javascript");
})