Documentation Index

Fetch the complete documentation index at: https://usercentrics.document360.io/llms.txt

Use this file to discover all available pages before exploring further.

Hide iframes when the banner is shown

Prev Next

Requirements

In the following example you have to add a <div> in the place where you want to add the iframe.

<div id="log"></div>
<script>
  window.addEventListener("CMP_SHOWN", function (e) {
    document.getElementById('log').innerHTML = '';
  }
  });
  window.addEventListener("SAVE", function (e) {
    document.getElementById('log').innerHTML = '<iframe id="IFRAME_ID" src="IFRAME_SRC"></iframe>';
  }
  });
</script>