![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
25/11/2009, 11:22
|
| | Fecha de Ingreso: octubre-2009
Mensajes: 97
Antigüedad: 15 años, 3 meses Puntos: 4 | |
Respuesta: Extender textarea Prueba con este codigo:
Código html:
Ver original function agrandar(){ area=texto.value; lineas=area.split("\n"); for(i in lineas){ var ubound=i; } ubound=new Number(ubound)+1; texto.rows=ubound; }
|