<script>
const rmni_params = {
container: "cal-carousel-rmni-container",
creative: "https://live.polaris.me/assets/cart/1cfed24e-0253-480f-8232-c631bdb53c0b"
};
const loadRMNI = () => {
const iframe = document.createElement("iframe");
iframe.style.cssText = "background: white; width: 192px; height: 160px; border: none;";
iframe.classList.add("pol-rmni-frame");
const req = new XMLHttpRequest();
req.open("GET", rmni_params.creative, true);
req.onloadend = function () {
iframe.contentDocument.open();
iframe.contentDocument.write(req.responseText);
iframe.contentDocument.close();
iframe.contentWindow.pol_params = {
isBiu: true,
isMws: false,
isAlc: false,
baseItemId: "1900",
customBaseItemId: "16137",
trackers: {
click: "%%TTD_CLK%%",
params: {
requestId: "%%TTD_CACHEBUSTER%%"
},
}
};
}
req.send();
document.body.appendChild(iframe);
};
loadRMNI();
</script>
3
2
111KB
113KB
174.0ms
185.0ms
175.0ms