With Copilot
Acquia Copilot is a conversational AI connected into our product documentation and knowledge base. Ask Copilot about product features, technical details, troubleshooting and how to get started with Acquia products.
Sign in to use Acquia Copilot
| Name | Description |
|---|---|
| MonsidoCookieOnLoad | The event is triggered when the cookie banner is initialized. |
| MonsidoCookieOnShow | The event is triggered when the cookie banner is displayed on the website (regardless of whether consent has already been submitted or not). |
| MonsidoCookieOnHide | The event is triggered when the cookie banner is hidden (either consent has already been submitted or cookie banner is forced to be hidden). |
| MonsidoCookieOnAccept | The event is triggered when the visitor accepts the use of cookies the first time after page load. |
| MonsidoCookieOnUpdate | The event is triggered when the visitor changes the use of cookies. |
| MonsidoCookieRunEssentialScripts | The event is triggered when the visitor gives consent to essential cookies. |
| MonsidoCookieRunBasicScripts | The event is triggered when the visitor gives consent to basic cookies. |
| MonsidoCookieRunMarketingScripts | The event is triggered when the visitor gives consent to marketing cookies. |
| MonsidoCookieRunAnalyticsScripts | The event is triggered when the visitor gives consent to statistics cookies. |
| MonsidoCookieRunPersonalisationScripts | The event is triggered when the visitor gives consent to preferences cookies. |
window.addEventListener('MonsidoCookieOnLoad', (e) => {
console.log('Cookie Banner Loaded');
});
window.addEventListener('MonsidoCookieOnShow', (e) => {
console.log('Cookie Banner Shown');
});
window.addEventListener('MonsidoCookieOnHide', (e) => {
console.log('Cookie Banner Hidden');
});
window.addEventListener('MonsidoCookieOnAccept', (e) => {
console.log('Cookie Consent Accepted');
console.log('Consent', window.monsidoConsentManager.cookiesConsent);
});
window.addEventListener('MonsidoCookieOnUpdate', (e) => {
console.log('Cookie Consent Changed');
console.log('Consent', window.monsidoConsentManager.cookiesConsent);
});
window.addEventListener('MonsidoCookieRunEssentialScripts', (e) => {
// Execute scripts that requires essential consent here
});
window.addEventListener('MonsidoCookieRunBasicScripts', (e) => {
// Execute scripts that requires basic consent here
});
window.addEventListener('MonsidoCookieRunMarketingScripts', (e) => {
// Execute scripts that requires marketing consent here
});
window.addEventListener('MonsidoCookieRunAnalyticsScripts', (e) => {
// Execute scripts that requires statistics consent here
});
window.addEventListener('MonsidoCookieRunPersonalisationScripts', (e) => {
// Execute scripts that requires preferences consent here
});
If this content did not answer your questions, try searching or contacting our support team for further assistance.
If this content did not answer your questions, try searching or contacting our support team for further assistance.