<script>
const iframe = document.createElement('iframe');
iframe.style.cssText = 'width: 100vw; height: 100vh; border: none; position: absolute; top: 0; left: 0;';
iframe.classList.add('btx-creative');
const bellatrixUrl = 'https://crud-cdn.polaris.me/creatives/btx/d6e69bb2-b0a9-476d-901e-1e30a2b1e4be';
const req = new XMLHttpRequest();
req.open('GET', bellatrixUrl, true);
req.onloadend = function () {
const contentWindow = iframe.contentWindow;
contentWindow.gamClickThru = '${CLICK_URL}';
contentWindow.sm_params = {
requestId: '${CACHEBUSTER}',
};
const contentDocument = iframe.contentDocument;
contentDocument.open();
contentDocument.write(req.responseText);
contentDocument.close();
}
req.send();
document.body.appendChild(iframe);
</script>
14
4
1114KB
1533KB
96.0ms
ms
96.0ms