JSFiddle - React, Tailwind, and code Playground

by Afzaal Ahmad Zeeshan

HTML

<input type="text" name="textName" />

<textarea name="someName" id="" cols="30" rows="10" placeholder="Love for all, Hatred for none! :)"></textarea>

JavaScript

$('input').focus();
$('textarea').focus(function () {
    $(this).attr('placeholder', '');
});