Skip to main content

Constant Contact Link Issue

Place this as an embed at the end of the page containing a Constant Contact form with a link issue:

<script>
function removeFooter() {
    var footer = document.querySelector('.ctct-form-footer');
    if (footer) {
        footer.remove();
    }
}

var observer = new MutationObserver(function(mutations) {
    mutations.forEach(function(mutation) {
        if (mutation.addedNodes && mutation.addedNodes.length > 0) {
            removeFooter();
        }
    });
});

observer.observe(document.body, { childList: true, subtree: true });

removeFooter();

</script>