JSFiddle - React, Tailwind, and code Playground
by Web Carvers
HTML
<button id="one" type="button">Id on me</button>
<a href="#">Click me</a>
JavaScript
$("#one").on('click', function(){
});
by Web Carvers
<button id="one" type="button">Id on me</button>
<a href="#">Click me</a>
$("#one").on('click', function(){
});