$('body').on('click', '.coolLink', function (e) {
e.preventDefault();
document.location='https://sitecoder.blogspot.com';
return false;
}
<a href="#" class="coolLink">Тест</a>
$('body').on('click', '.coolLink', function (e) {
alert('ОК');
}
$('.coolLink').attr('href','newlink');
$('.coolLink').attr('onclick','alert(); document.location='https://sitecoder.blogspot.com'; return false;');
$('.coolLink').attr('onclick','alert(); document.location="https://sitecoder.blogspot.com"; return false;');
<a href="#" class="coolLink">тест</a>
<a href="https://toster.ru" onclick="document.location='https://sitecoder.blogspot.com';return false">Полезный сайт</a>