Un ejemplo de mi tabla:
index.html
Código:
controller.js<table> <tr> <th>checkbox</th><th>nombre</th> </tr> <tr class="tr"> <td><input type="checkbox" value="1" /></td> <td>Juanito sosa</td> </tr> <tr class="tr"> <td><input type="checkbox" value="2" /></td> <td>Pedro Capetillo</td> </tr> </table>
Código:
Espero me puedan ayudar u.u.var filas = getElementsByClassName('tr'); for(var i = 0; i < filas.length; i++) { filas[i].onclick = redireccionar; } function redireccionar() { location.href = 'http://www.google.com'; }
Saludos.