<div onclick="location.replace(url1);">
<div onclick="location.replace(url2);">
</div>
</div>
<div onclick="location.replace('http://yandex.ru');">
<div onclick="location.replace('https://toster.ru');event.stopPropagation();">
</div>
</div>
<div onclick="location.replace(url1);">
<div class="some-handler">
</div>
</div>
<script>
$('.some-handler').on('click', function (event) {
event.stopProparation(); // Это то, что нам нужно
location.replace(url2);
}
</script>