Skip to main content

.chat.online()

This event handler allows you to invoke a method right after the operators of your firm are back online. The method will be invoked right after the page completely loads.

Syntax

Copied$zoho.salesiq.chat.online(function(){});

Example

Copied<script>

$zoho.salesiq.ready=function()

{

   $zoho.salesiq.chat.online(function()
   {
     #insert your code here
   });

}

</script>