JSFiddle - React, Tailwind, and code Playground

HTML

<textarea name="tst">
Something
</textarea>

JavaScript

$("textarea").focus(function() {
    if ($(this).text().trim() === "Something") {
        $(this).text("");
    }
});