.privacy.trackingbannercontent()
This API allows you to customize the content on the tracking banner which is used to get the visitor's consent before tracking their details, as per the GDPR Policy.
Syntax
Copied$zoho.salesiq.privacy.trackingbannercontent(function(){})
Example
Copied<script>
$zoho.salesiq.ready=function()
{
$zoho.salesiq.privacy.trackingbannercontent(
{
'description' : 'Privacy policy text goes here',
'acceptbutton': 'Accept',
'declinebutton': 'Decline',
'policytextandlink': {
'text' : 'LearnMore',
'link' : 'www.google.com'
}
}
);
}
</script>