Click handler demo
HTML
<a href="https://reddit.com" target="_blank">Does this link go to reddit?</a>
JavaScript
document.getElementsByTagName('a')[0].addEventListener('click', function(e){
e.target.setAttribute('href', 'https://makeapoint.vincenttunru.com/?point=no+it+doesn%27t')
});