Cita:
Iniciado por crujikoki Hola,
Mira a ver si esto es lo que quieres:
Código PHP:
<html>
<head>
<script type="text/javascript">
function textArea_blur(TxtArea,TxtInicial)
{
if(TxtArea.value == "")
{
TxtArea.value = TxtInicial;
}
}
function textArea_focus(TxtArea,TxtInicial)
{
if(TxtArea.value == TxtInicial)
{
TxtArea.value="";
}
}
</script>
</head>
<body>
<textarea rows="20" cols="100" id="area" onBlur="textArea_blur(this,this.defaultValue)" onFocus="textArea_focus(this,this.defaultValue)">
Detalla el momento, la situación y localización exacta donde lo perdiste o lo encontraste.
IMPORTANTE: Por razones de seguridad evita facilitar datos personales.</textarea>
</body>
</html>
Hola Socio!!
Hoy he probado lo que me pasaste y oye, fabuloso!!! la verdad es que genial! muchas, muchas gracias!!!