Hola
x_women
Prueba este ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function marcar(obj) {
chk = obj.getElementsByTagName('input')[0];
chk.checked = !chk.checked;
}
</script>
</head>
<body>
<table>
<tr onclick="marcar(this)">
<td>Algo</td><td><input type="checkbox" /></td>
</tr>
</table>
</body>
</html>
Saludos, :Adios: