28/06/2012, 14:14
|
| Colaborador | | Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 5 meses Puntos: 1012 | |
Respuesta: Problema con onclick y div anidados prueba con esto Cita: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<head>
<meta http-equiv="Content-Type" content="application/xhtml; charset=utf-8" />
<title></title>
<script type="text/javascript">
function fnc(e) {
evt = (e.target) ? e.target : window.event.srcElement;
if(evt.parentNode.tagName == 'DIV' && evt.parentNode.id == 'div1') return false;
location.href='ENLACE';
}
window.onload = function() {
if(document.addEventListener) {
document.addEventListener('click', function(event) {fnc(event)}, false);
} else {
document.attachEvent('onclick', function(event) {fnc(event)});
}
};
</script>
<body>
<div id="div1">
si
<div id="div2">
no
</div>
</div>
<div id="div3">
si
</div>
</body>
</html> |