Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/08/2006, 16:28
Avatar de Cap.Buscapina
Cap.Buscapina
 
Fecha de Ingreso: octubre-2004
Ubicación: Argentina
Mensajes: 836
Antigüedad: 19 años, 7 meses
Puntos: 4
creo que ya aparecio la solucion:
Cita:
<html>
<head>
<script>
function tr(){
alert("tr");
}
function check(e){
alert("check");
if (e.stopPropagation) {
e.stopPropagation();
}else{
if(window.event) {
window.event.cancelBubble = true;
}
}
}
</script></head>
<form>
<table>
<tr onClick="tr()"><td>
ch<input type="checkbox" onClick="check(event)">
</td></tr></table>
</form>
<body>

</body>
</html>
aunque no lo probé al 100%

saludos
__________________
by Capitán Buscapina
.