Personal tools
Namespaces
Variants
Actions

MediaWiki:Katapulta.js

From Katapulta

(Difference between revisions)
Jump to: navigation, search
(Created page with "function AppendCategoryTreeToSidebar() { try { var node = document.getElementById( "p-tb" ) .getElementsByTagName('div')[0] ...")
m (Blanked the page)
 
Line 1: Line 1:
-
function AppendCategoryTreeToSidebar() {
+
 
-
    try {
+
-
        var node = document.getElementById( "p-tb" )
+
-
                          .getElementsByTagName('div')[0]
+
-
                          .getElementsByTagName('ul')[0];
+
-
+
-
        var aNode = document.createElement( 'a' );
+
-
        var liNode = document.createElement( 'li' );
+
-
+
-
        aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
+
-
        aNode.setAttribute( 'href' , 'http://en.wikipedia.org/wiki/Special:CategoryTree' );
+
-
        liNode.appendChild( aNode );
+
-
        liNode.className = 'plainlinks';
+
-
        node.appendChild( liNode );
+
-
    } catch(e) {
+
-
        // lets just ignore what's happened
+
-
        return;
+
-
    }
+
-
}
+
-
+
-
addOnloadHook( AppendCategoryTreeToSidebar );
+

Latest revision as of 13:12, 17 March 2011