Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/01/2008, 03:30
Goomba
 
Fecha de Ingreso: abril-2003
Ubicación: Santiago
Mensajes: 212
Antigüedad: 21 años, 1 mes
Puntos: 0
Re: problemas con un oncklic de un checkbox

ya solucione mi porblema y es asi
Código:
var checkbox = objeto.createElement('input');
				checkbox.setAttribute("type","checkbox");
				checkbox.setAttribute("name","calefactores[]");
				//checkbox.setAttribute("onclick","mostrarSeleccionado(this)");
				checkbox.setAttribute("value",texto);
				checkbox.onclick=function (){mostrarSeleccionado(this)}
				idcolumna.appendChild(checkbox);