Mi problema es que tengo un checkbox y quiero sacar la informacion de si esta checkeado o no para hacer un tratamiento despues.
Asi es mi tabla de checkbox:
Código HTML:
<th><input type="checkbox" id="check1" name="check1" onclick="selection();" /> </th> <th><input type="checkbox" id="check2" name="cehck2" onclick="selection();" /> </th> <th><input type="checkbox" id="check3" name="check3" onclick="selection();" /> </th> <th><input type="checkbox" id="check4" name="check4" onclick="selection();" /> </th> <th><input type="checkbox" id="check5" name=" onclick="selection();" /> </th>
Código HTML:
if(document.getElementById('check1').checked){ }
Lo he intentado tambien con el valor 'name' de los checkbox pero tampoco :
Código HTML:
if(document.getElementsByName('check1').checked){ }
Alguna idea de como puedo arreglarlo?
Gracias!