JSFiddle - React, Tailwind, and code Playground
by dima_k
HTML
<button id="click-me">Click me</button>
CSS
#click-me{
font-size: 2em;
}
JavaScript
$('body').on('click', 'button', function(){
alert('Clicked');
});
by dima_k
<button id="click-me">Click me</button>
#click-me{
font-size: 2em;
}
$('body').on('click', 'button', function(){
alert('Clicked');
});