テキストエリアがあります。クリックすると、テキストをクリアします。
<textarea id="cow" rows="5" name="message" cols="50" onfocus="clear()" >Please provide a link to an image no wider than 500px. </textarea>
および外部jsファイルからのjavascript:
var cow=document.getElementById("cow").value;
function clear(){ document.getElementById("cow").value=' '; }
おそらくJqueryを使用できると思いますが、JavaScriptを学習しようとしているだけです。