Managing via script tag attribute

Using script tag html attributes gives us possibility to manage cookie configuration.

HTML tag attribute name is disable-cookie and allow to disable all cookies by passing value all or functional cookie by passing value functional or performance cookie by passing value performance. See examples below.

🚧

Note

Please see example below. Important detail here is that script tag must have id reevoomark-loader.

<script 
  defer="defer" 
  src="//mark.reevoo.com/assets/reevoo_mark.js" 
  disable-cookie="functional" 
  id="reevoomark-loader" 
  type="text/javascript"
></script>
<script 
  defer="defer" 
  src="//mark.reevoo.com/assets/reevoo_mark.js" 
  disable-cookie="performance" 
  id="reevoomark-loader" 
  type="text/javascript"
></script>
<script 
  defer="defer" 
  src="//mark.reevoo.com/assets/reevoo_mark.js" 
  disable-cookie="all" 
  id="reevoomark-loader" 
  type="text/javascript"
></script>