15/09/2005, 13:09
|
| | | Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 19 años, 11 meses Puntos: 9 | |
function FormularioEtiquetasTipo(formulario,etiqueta,tipo) { var v=newArray(); var e=document.forms[formulario].getElementsByTagName(etiqueta); var c=0; for(var n=0;n<e.length;n++) { if(e[n].type==tipo) { v[c]=e[n].value; c++; } } return v;//return v.length; }
Última edición por programeitor; 15/09/2005 a las 13:17 |