.visitor.idleTime()
This API allows you to specify a time frame, that is to be used to judge if a visitor is idle on your website or not. For instance, if you specify the time frame as 5 minutes and if the visitor did not perform any action for 5 minutes, then the visitor status would be considered as idle.
PARAMETERS
Time: Specify a time frame in minutes.
Note:
The default value would be 30 minutes.
Syntax
Copied$zoho.salesiq.visitor.idleTime("");
Example
Copied<script>
$zoho.salesiq.ready=function()
{
$zoho.salesiq.visitor.idleTime(10);
}
</script>