- Tu ultimo input esta "mal formado":
Cita: <th><input type="checkbox" id="check5" name=" onclick="selection();" /> </th>
- Y..
No seria...?
<< o tu funcion selection() debe adivinar quien hizo la invocacion ?
Mi SUGERENCIA...es hacerlo asi:
Código Javascript
:
Ver original<th><input type="checkbox" id="check1" name="check1" onclick="selection(this);" /> </th>
<th><input type="checkbox" id="check2" name="cehck2" onclick="selection(this);" /> </th>
<th><input type="checkbox" id="check3" name="check3" onclick="selection(this);" /> </th>
<th><input type="checkbox" id="check4" name="check4" onclick="selection(this);" /> </th>
<th><input type="checkbox" id="check5" name="check5" onclick="selection(this);" /> </th>
<script>
function selection(o)
{
if(o.checked){
console.log('El check '+o.id+' esta marcado');
}else
console.log('El check '+o.id+' NO esta marcado');
}
</script>