Event Tracking on an element
https://developers.google.com/analytics/devguides/collection/analyticsjs/events
https://support.google.com/analytics/answer/1033068?hl=en
P.S.: Works on button and text links but not on image links
<script>
ijQuery(document).ready(function(){
ijQuery('#button a').on('click', function() {
ga('send', 'event', 'button', 'click', 'nav-buttons');
});
});
</script>