JSFiddle - React, Tailwind, and code Playground
by jashwant
HTML
<p>Hello</p>
JavaScript
$(document).ready(function() {
$('p').unbind('click');
$('p').click(function() {
alert('hi');
});
});
by jashwant
<p>Hello</p>
$(document).ready(function() {
$('p').unbind('click');
$('p').click(function() {
alert('hi');
});
});