I was looking something else and found your question. Passed a long time since your question
You can do it via jQuery and e.preventDefautl()
<script>
jQuery('body').on('click', 'a[href^="tel:"]', function(e) {
e.preventDefault();
console.log('clicked phone');
});
</script>