function hideParentSection() { /*const target = document.querySelector('div.disqus.section'); if (!target) { console.warn('No element with class "disqus section" was found.'); return; } let current = target.parentElement; while (current) { if ( current.matches('div.sectionenhanced.parbase.section') || current.matches('div.sectionWrapper.parbase.section') ) { current.style.display = 'none'; break; } current = current.parentElement; }*/ } //hideParentSection();