fresh-petabyte-54492
05/19/2024, 7:03 AMfresh-fireman-491
05/19/2024, 2:22 PMtel:
link will only work on devices that support it. It won't work on desktops or laptops, it might open a VoIP application, if the device has it installed.
You can use something like this on your website:
javascript
window.botpressWebChat.onEvent(
function(event) {
if (event.type === 'TRIGGER') {
console.log('Got event');
window.location.href = 'tel:+1234567890'; // Replace with the actual phone number
}
},
['TRIGGER']
);
Its been a while since I have used the .onEvent, but I think that should receive it and proceed.fresh-petabyte-54492
05/24/2024, 3:48 AM