User:TheGrimme/HideRefDeskHeader.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
This user script seems to have a documentation page at User:TheGrimme/HideRefDeskHeader. |
// <pre><nowiki>
// http://en.wikipedia.org/wiki/User:TheGrimme
// Hides the header info at the top of reference desk pages GPL, [[en:User:TheGrimme]]
// hook
if(isOnRefDeskPage())
{
addOnloadHook(HideRefDeskHeader);
}
//init
function HideRefDeskHeader()
{
// For now, get all tables and remove the first one with this border
var tables = document.getElementsByTagName("TABLE");
var removedTable = null;
for(var i=0; i < tables.length; i++)
{
var table = tables[i];
var match = "1px solid rgb(170, 170, 170)"
if(table.style.border == match)
{
table.style.display = "none";
removedTable = table;
break;
}
}
// Move the table of contents into the old spot. Best use of space
var toc = document.getElementById("toc");
if(toc != null && removedTable != null)
{
var tocParent = toc.parentNode;
var removedParent = removedTable.parentNode;
removedParent.appendChild(tocParent.removeChild(toc));
}
}
function isOnRefDeskPage()
{
var isOnRefDeskPage = false;
var location = window.location.pathname;
var needle = "wiki/Wikipedia:Reference_desk/";
if(location.indexOf(needle) != -1)
{
isOnRefDeskPage = true;
}
return isOnRefDeskPage;
}
//<nowiki></pre>