How to Trigger workflow when an HTML Element is Clicked (Click to Call)

Ok I hadn’t catch the part where you use the tel: protocol. Whether it’s tel:, javascript: or http:, a link can only have one I believe. So like @yusaney1 mentioned, you need an event listener:

<a href="tel:8881113333" id="myPhone">Link Text</a>

<script>
    document.querySelector('#myPhone').addEventListener('click', () => {
        bubble_fn_group();
    });
</script>
4 Likes