11/09/2005, 16:26
|
| | | Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 19 años, 11 meses Puntos: 9 | |
function EstiloPorTipo(marca,tipo,estilo){//programeitor var e=estilo.split(','); var m=document.getElementsByTagName(marca); for(var n=0;n<m.length;n++){ if(m[n].type==tipo){ for(var i=0;i<e.length;i+=2){ m[n].style[e[i]]=e[i+1]; } } } }
EstiloPorTipo('input','radio','background,green,width,50px,height,50px') |