JSFiddle - React, Tailwind, and code Playground
HTML
<div class="someclass">
<input id="special" type="text" value="Post" class="special" />
</div>
JavaScript
$('input.special').click(function () {
alert('Bobs your mothers brother');
return false;
});
function specialFunction()
{
alert('Bobs your mothers brother');
}