- Joined
- May 3, 2020
- Messages
- 30
- Reaction score
- 10
In my application I'm using tel: protocol around my phone numbers. For example:
Unfortunally when the web extension is active, it changes the DOM of the web application and the url becomes:
So when I click on the link the call doesn't start and a new page of the application is opened.
As stated from Google, https://developers.google.com/web/fundamentals/native-hardware/click-to-call , the tel: protocol should be used where possible. Do you have any hint to solve this problem?
Thanks
Code:
<a [href]="'tel:'+row.mobilePhone">+3902123456789</a>
Unfortunally when the web extension is active, it changes the DOM of the web application and the url becomes:
Code:
<a _ngcontent-txu-c315="" href="+390212345678" title="Call +390212345678 via 3CX" tcxhref="+390212345678" target="_blank">+390212345678</a>
So when I click on the link the call doesn't start and a new page of the application is opened.
As stated from Google, https://developers.google.com/web/fundamentals/native-hardware/click-to-call , the tel: protocol should be used where possible. Do you have any hint to solve this problem?
Thanks
