How can I clear a textarea on focus?

CLiown picture CLiown · Sep 16, 2010 · Viewed 68.8k times · Source

Im using a simple form with a textarea, when the users clicks onto the textarea I want the contents of the textarea to be cleared.

Is this possible?

Answer

Jacob Relkin picture Jacob Relkin · Sep 16, 2010
$('textarea#someTextarea').focus(function() {
   $(this).val('');
});