window.addEventListener(“message”, function (e) { const height = +e.data?.height; const type = e.data?.type; const iframe = document.querySelector(“#iframe_gift_cards_41264”); if (!type || !type.match(“iframe_gift_cards_41264_resize”) || isNaN(height) || !iframe) { return; } iframe.height = height + “px”; }, false );