Download the script here or build your own (custom) ConsentCookie
Include the script on your website:
<script src="/path/to/consentcookie.min.js"></script>
Initialize ConsentCookie:
<script>
// An example of ConsentCookie initialized with a custom config
ConsentCookie.init({
'connections': {
'cc': {
'initstate': 'disabled'
},
'iq': {
'initstate': 'optout'
},
'ga': {
'initstate': 'disabled'
},
'gtm': {
'initstate': 'disabled'
}
},
'moreinfolink': 'https://www.humanswitch.io/over/privacy/'
});
</script>
To load a tracker based on the ConsentCookie preference of the user you can do the following:
<script>
// Check if the user accepted the consent for the given connection by its id
if(ConsentCookie.get("id").flag === 1){
// Do stuff
}
</script>