Opt out
Opt a visitor out of Optimizely tracking by disabling Optimizely.
Syntax
window["optimizely"].push(optOut);
Parameters
Parameter and Type | Child Attribute | Description |
---|---|---|
optOut | An object with the | |
type | Child attribute of type OptOutObject | The argument indicating that you are using the optOut function. Required. |
isOptOut | Child attribute of type OptOutObject | It is possible to opt in a previously opted-out visitor. |
Example Call
window["optimizely"].push({
"type": "optOut",
"isOptOut": false
});
Description
Opt a visitor out of Optimizely tracking by disabling Optimizely. For example, you may want to opt visitors out of Optimizely tracking as part of your site's broader opt-out preferences.
Updated 9 months ago