
09/12/2004, 18:02
|
| | Fecha de Ingreso: octubre-2004 Ubicación: España
Mensajes: 894
Antigüedad: 20 años, 4 meses Puntos: 3 | |
Hola, lorecasas
Parece que ya lo solucionaste, pero por si acaso...
en tu código original yo cambiaría:
text = 'txt' + String(i);
por
text = 'txt' + i;
y
if (('f.'+[text]+'.value') == ''){
por
if (('f.'+text+'.value') == ''){
__________________ Angel :cool: |