, javascript jQuery...
javascript , , , , textarea . jQuery :
$('textarea').focus(function() {
var theVal = $(this).val();
$(this).val(theVal);
});
javascript:
var theArea = document.getElementByName('[textareaname]');
theArea.onFocus = function(){
var theVal = theArea.value;
theArea.value = theVal;
}
. .