Make an appointment
One Step Closer to the Right Business Opportunity
(function removePopupIfInIframe() {
if (window.self === window.top) return; // Not in an iframe — do nothing
function removeEngageBayPopup() {
const popup = document.getElementById("engagebayFormContainer");
const overlay = document.querySelector(".engagebay-overlay");
if (popup) popup.remove();
if (overlay) overlay.remove();
// If either exists, keep checking in case they reappear
if (!popup || !overlay) {
requestAnimationFrame(removeEngageBayPopup);
}
}
// Run after full DOM load and continue watching
window.addEventListener("load", () => {
requestAnimationFrame(removeEngageBayPopup);
});
})();