(function() {
function cleanupBrokenHTML() {
const pageContainer = document.querySelector('.elementor-33647');
if (!pageContainer) return;
// Get all text nodes
const walker = document.createTreeWalker(
pageContainer,
NodeFilter.SHOW_TEXT
);
const nodesToClean = [];
while (walker.nextNode()) {
if (walker.currentNode.nodeValue.includes('elementor-element-4082072')) {
nodesToClean.push(walker.currentNode);
}
}
nodesToClean.forEach(node => {
node.nodeValue = node.nodeValue.replace(/class="elementor-element elementor-element-4082072" data-id="4082072" data-element_type="section"/g, '');
});
}
// Try multiple times to catch it
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', cleanupBrokenHTML);
} else {
cleanupBrokenHTML();
}
// Also try after a delay in case Elementor loads late
setTimeout(cleanupBrokenHTML, 100);
setTimeout(cleanupBrokenHTML, 500);
})();