top of page
bottom of page
window.addEventListener("message", function(e) {
if (e.data?.type === "brandaudit-scrolltop") {
var iframe = document.querySelector("iframe[src*='brandaudit']");
if (iframe) iframe.scrollIntoView({ behavior: "smooth", block: "start" });
}
});