JSFiddle - React, Tailwind, and code Playground
HTML
<textarea name="tst">
Something
</textarea>
JavaScript
$("textarea").focus(function() {
if ($(this).text().trim() === "Something") {
$(this).text("");
}
});
<textarea name="tst">
Something
</textarea>
$("textarea").focus(function() {
if ($(this).text().trim() === "Something") {
$(this).text("");
}
});