<script>
const rmni_params = {
container: "cal-carousel-rmni-container",
creative: "https://live.polaris.me/assets/cart/35a61125-fb7f-4958-a6bb-3408a7cc25c4"
};
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: false,
isMws: true,
isAlc: false,
baseItemId: "",
customBaseItemId: "16139",
trackers: {
click: "%%TTD_CLK%%",
params: {
requestId: "%%TTD_CACHEBUSTER%%"
},
}
};
}
req.send();
document.body.appendChild(iframe);
};
loadRMNI();
</script>
3
2
112KB
114KB
112.0ms
115.0ms
112.0ms