User:Codehydro/Headless TOC/auto-open
Appearance
(Redirected from User:CodeHydro/Headless TOC/auto-open)
window.onload = setTimeout(function () {
for (i = 0, tocnames = document.getElementsByClassName("toctext"), tocheads = document.getElementsByClassName("collapseButton"); i < tocnames.length; i++) { for (n = 0; n < tocheads.length; n++) if (tocheads[n].parentNode.getElementsByClassName("mw-headline").length && tocnames[i].innerHTML.trim() == tocheads[n].parentNode.getElementsByClassName("mw-headline")[0].textContent.trim()) tocnames[i].parentNode.setAttribute("onclick", "if(" + (s = "$('#" + tocheads[n].childNodes[1].id + "')") + "[0].innerText=='show')" + s + ".trigger('click')"); if (tocnames[i].parentNode.href == window.location.href) h = i; } window.setTimeout('$(tocnames[h]).trigger("click")', 99);
}, 99);