JSFiddle - React, Tailwind, and code Playground
by maharajan a
HTML
<div class="showdata">
hi
</div>
JavaScript
$(function() {
$('.showdata').on('click',function() {
getme.welcome();
});
var getme={
welcome:function()
{
var sas="<p>hi</p>";
$(sas).appendTo($('.showdata'));
}
}
});