JSFiddle - React, Tailwind, and code Playground

HTML

<textarea id="cow" rows="5" name="message" cols="50" onfocus="foo()">Please provide a link to an image no wider than 500px.</textarea>

JavaScript

var cow = document.getElementById("cow").value;

function foo() {
    document.getElementById("cow").value = ' ';
}