.chatbutton.visible()
This API would let you control the visibility of the Chat Button(Supported only for Button chat widget).
PARAMETERS
show: To display the Chat Button.
hide: To hide the Chat Button.
delayinsecs: Specify a time frame in seconds(delay). The Chat Button will be displayed after the specified delay.
Syntax
Copied$zoho.salesiq.chatbutton.visible(" show | hide | delayinsecs ");
Example
Copied<script>
$zoho.salesiq.ready=function()
{
$zoho.salesiq.chatbutton.visible("show");
}
</script>