Skip to product menu
Skip to main content

.feedback.visible()

This API lets you control the visibility of the feedback form which would appear right after a chat session concludes.

PARAMETERS

show: Display the feedback form.

hide: Hide the feedback form.

Syntax

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

Example

Copied<script>

$zoho.salesiq.ready=function()

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

</script>