Jump to content

User:TheDJ/foldrefs.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by TheDJ (talk | contribs) at 13:02, 15 December 2008 (let's see what this will do.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
//<pre><nowiki>

function fold_refs() {
var ref_list_list = getElementsByClassName(document, "OL", "references");

  if( ref_list_list && ref_list_list[0] )
  {
    var ref_list = ref_list_list[0];
    var refdiv = document.createElement( "DIV" );
    refdiv.className = "NavFrame collapsed"
    refdiv.style.border = "none";
    refdiv.innerHTML = "<div class="NavHead"><div></div></div><div class="NavContent"></div>";

    ref_list.parentNode.appendChild( refdiv );
    refdiv.lastChild.appendChild( ref_list );
  }
  createNavigationBarToggleButton();
}

addOnloadHook( fold_refs );
//</pre></nowiki>