Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/06/2009, 03:50
crujikoki
 
Fecha de Ingreso: diciembre-2007
Ubicación: Barcelona
Mensajes: 289
Antigüedad: 17 años
Puntos: 8
Respuesta: Auto vaciar textarea al hacer clic dentro...

Hola,

Mira a ver si esto es lo que quieres:

Código PHP:
<html
<
head
<
script type="text/javascript">

function 
textArea_blur(id)
{
    var 
texto = new String();
    
texto "Escribe algo aquí...";
    var 
area document.getElementById(id);
    if(
area.value == "")
    {
        
area.value="Escribe algo aquí...";
    }
}

function 
textArea_focus(id)
{
    var 
texto = new String();
    
texto "Escribe algo aquí...";
    var 
area document.getElementById(id);
    if(
area.value == texto)
    {
        
area.value="";
    }
}

</script>
</head> 
<body> 
<textarea rows="2" cols="20" id="area" onBlur="textArea_blur(this.id)" onFocus="textArea_focus(this.id)">
Escribe algo aquí...</textarea>
</body> 
</html> 

Si no es lo que quieres vuelve a postear y nos lo miramos.

Saludos!