Click handler example (broken)
by dipish
HTML
<h1>Click handler example (broken)</h1>
<a href="https://coderwall.com/dpashkevich" id="action">Middle-click me, I dare you</a>
JavaScript
document.getElementById('action').addEventListener('click', function(e) {
e.preventDefault();
alert("Maybe I want to do something else on your link?");
});