Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/09/2005, 16:26
Avatar de programeitor
programeitor
 
Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 19 años, 2 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')