Thanks @julienallard1 for the that example code.
I put it into my app and it works well for triggering the workflow. I tried to incorporate the function for click to call by modifying the code to include the tel like below
<a href="tel:8881113333;javascript:void(0); bubble_fn_group(); ">Link Text</a>
and when I do that the workflow no longer triggers, but the click to call function is initiated.
If I change the code to have the ‘tel’ portion in another location like below
<a href="javascript:void(0); tel:8881113333; bubble_fn_group(); ">Link Text</a>
the workflow is triggered but the click to call doesn’t initiate. Same thing if I have the ‘tel’ at the end like below
<a href="javascript:void(0); bubble_fn_group(); tel:8881113333; ">Link Text</a>
Does something jump out to you as to what I am doing wrong that I can’t get both the workflow to trigger and the click to call to initiate?