Claro, ese código te permite seleccionar TODOS los checkbox del form; si sólo quieres 2 puedes hacer algo así.
Código Javascript
:
Ver originalfunction selecc(a, b, c){
if(a.checked==true){
document.getElementById(b).checked=true;
document.getElementById(c).checked=true;
}
}
Y luego llamarlo así:
Código HTML:
Ver original<input type='checkbox' id='chkbox1' onclick='selecc(this, "chkbox2", "chkbox3") /> <input type='checkbox' id='chkbox2' /> <input type='checkbox' id='chkbox2' />
Si fueran los primeros 2 checkbox, entonces te podría servir el código de Adler algo modificado:
Código Javascript
:
Ver originalfunction funcion (chkbox) {
for (var i=0;i < document.forms['formulario'].elements.length;i++) {
elemento = document.forms[0].elements[i];
if (elemento.type == 'checkbox') {
elemento.checked = chkbox.checked
}
if (i==2){
break;
}
}
}
Saludos (: