.customfield.clear()

This API can be used to either remove specific custom fields created using the API .customfield.add() or all the fields.

Syntax: To clear specific fields

Copied$zoho.salesiq.customfield.clear([" < NAME1 > " ," < NAME2 > " ]);

Syntax: To clear all the fields

Copied$zoho.salesiq.customfield.clear();

Example

Copied<script>

$zoho.salesiq.ready=function(embedinfo)

{
   $zoho.salesiq.customfield.clear([“browse”]);
}

</script>