What's the appropriate way of a "link follow" event?
<a href="#" class="link">link</a>
<script>$('.link').on('click', function() { });</script>
Capturing the click event is not enough, because you can follow the link also by using double click or hitting the enter key.
Instead of wrapping each possible event, is there a ready-to-go function like on('follow')
?