Disable
Disable Optimizely entirely.
Syntax
window["optimizely"].push("disable");
Parameters
Parameter and Type | Child Attribute | Description |
---|---|---|
disable | An object with the | |
type | Child attribute of type DisableObject | The argument indicating that you're using the disable function. Required. |
scope | Child attribute of type DisableObject | You can disable just Optimizely tracking calls from being made using the parameter scope "tracking". |
Example Call
window["optimizely"].push({
"type": "disable"
});
Description
Disable Optimizely entirely. You must call disable
prior to loading the Optimizely snippet.
You can also disable just Optimizely tracking calls from being made using the parameter scope tracking
.
Updated over 2 years ago