Skip to main content

.chatwindow.visible()

This API would let you control the visibility of the Chat Window. 

PARAMETERS

show: To display the Chat window.

hide: To hide the Chat window.

delayinsecsSpecify a time frame in seconds to induce a delay before displaying the chat window.

Syntax

Copied$zoho.salesiq.chatwindow.visible (" show | hide | delayinsecs ");

Example

Copied<script>

$zoho.salesiq.ready=function()

{
   $zoho.salesiq.chatwindow.visible("hide");
}

</script>