furoya, interesante tu propuesta (los dos buscamos la solución mas compleja). lastima que stopPropagation() no es compatible con ie8- y cancelBubble está desfasado. más interesante aún, y nada que objetar, es la opción de sobrescribir una variable que propone emprear.
peroooooooo ...... aquí viene el pero
evitemos el uso o mal uso (dependencia) de javascript
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">
<head>
<title>titulo</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
/*<![CDATA[*/
#div1{
width: 500px;
height: 500px;
background: red;
}
#div1 a{
display: block;
height: 500px;
}
#div2{
width: 300px;
height: 300px;
background: green;
position: relative;
top: -500px;
left: 0;
}
/*]]>*/
</style>
</head>
<body>
<div id="div1">
<a href="http://emprear.com"></a>
<div id="div2">Div2</div>
</div>
</body>
</html>