Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/11/2011, 12:10
gabrielcorr4
 
Fecha de Ingreso: octubre-2010
Ubicación: Guayaquil
Mensajes: 195
Antigüedad: 13 años, 6 meses
Puntos: 3
como poner Enlace dentro de un textarea

Saludos alguien sabria como poner un enlace a la palabra "hola" dentro de textarea? he probado de todo y nada.

Código HTML:
<body>

<script>
function maximo(campo,limite){
if(campo.value.length>=limite){
campo.value=campo.value.substring(0,limite);
 }
}
</script>



<textarea name="text" cols="56" rows="5"  border:1px solid #333; onMouseover="this.style.backgroundColor='yellow';" onMouseout="this.style.backgroundColor='lightblue';"  onKeyDown="maximo(this,255);" onKeyUp="maximo(this,255);"  readonly=”yes”>hola </textarea>
</body>
</html>