JSFiddle - React, Tailwind, and code Playground
by Ivin Raj S
HTML
<h1>This is the first file</h1>
JavaScript
$(document).ready(function(){
$('h1').click(function(){
$(this).css("color",'red');
});
});
by Ivin Raj S
<h1>This is the first file</h1>
$(document).ready(function(){
$('h1').click(function(){
$(this).css("color",'red');
});
});