Peace of Art at FfD4 Conference
/*
Squarespace can redraw/reinsert sections after page load.
Reapply automatically whenever that happens.
*/
const observer = new MutationObserver(function () {
hide2023Sections();
});
observer.observe(
document.body,
{
childList: true,
subtree: true
}
);
/* Additional checks during initial Squarespace rendering */
setTimeout(hide2023Sections, 250);
setTimeout(hide2023Sections, 750);
setTimeout(hide2023Sections, 1500);
setTimeout(hide2023Sections, 3000);
})();