top of page
bottom of page
$w.onReady(function () {
let script = document.createElement("script");
script.src = "https://cdn.jsdelivr.net/npm/@open-iframe-resizer/core@latest/dist/index.min.js";
script.type = "module";
script.onload = () => {
console.log("Script loaded!");
initialize({}, "#my-iframe");
};
document.body.appendChild(script);
});