JSFiddle - React, Tailwind, and code Playground

by bohdantheone

HTML

<div id="smiles" style="display:none">Смайлики</div>
<table border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td valign="top"><textarea class="commFl" style="height:135px;" rows="8" name="message" id="message" cols="50"></textarea></td></tr></tbody></table>

<script type="text/javascript">
 $('#message').focus(function(event) {
    $('#smiles').show();
    event.preventDefault();   
});
    
    $('#message').blur(function(event) {
    $('#smiles').hide();
    event.preventDefault();   
});
</script>