.tracking.allowMultiTrigger()

This API can be used to execute multiple triggers.

For example,
Rule 1: If visitor lands on website, send chat invite "hi there" is triggered. Now embed will display "hi there" trigger message to visitor.
Rule 2: If user navigates to pricing page, send chat invite "Need clarification on Pricing?" is triggered. Now embed will display "Need clarification on Pricing?" trigger message to visitor.
As soon as the visitor lands on the website, trigger message "hi there" is displayed on the chat window, now incase the visitor goes to pricing page, the trigger message "Need clarification on Pricing?" is again displayed on the chat window.

Note: By default, SalesIQ displays only one trigger type i.e, send chat invite

Syntax:

Copied$zohosq.tracking.allowMultiTrigger( " true | false ");

Example

Copied<script>

$zoho.salesiq.ready=function(embedinfo)

{
$zohosq.tracking.allowMultiTrigger( "true");
}

</script>