Misplaced Pages

User:Δ/Personaltoolbox.js

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
< User:Δ

This is an old revision of this page, as edited by Betacommand (talk | contribs) at 04:50, 6 July 2006 (JS: Revert to revision 61643879 by Betacommand.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Revision as of 04:50, 6 July 2006 by Betacommand (talk | contribs) (JS: Revert to revision 61643879 by Betacommand.)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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.
Documentation for this user script can be added at User:Δ/Personaltoolbox.
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 Misplaced Pages:Bypass your cache.
// <pre><nowiki>

/////////////////////////////////////////////////////////////////////////////////////////////////////////
// Personal toolbox - from http://en.wikipedia.org/User:Brian0918/monobook.js
/////////////////////////////////////////////////////////////////////////////////////////////////////////

function mylinks() {
 var boxclone = document.createElement("div");
 boxclone.id = 'p-navclone';
 boxclone.setAttribute("class","portlet");

 var titolo = document.createElement("h5");
 titolo.innerHTML = "my links";
 boxclone.appendChild(titolo);

 var corpo = document.createElement("div");
 corpo.setAttribute("class","pBody");
 var list_ul = document.createElement("ul");

 var list_b = document.createElement("li");
 list_b.id = 'v-myspace';
 var link_b = document.createElement("a");
 link_b.href = '/search/?title=Special:Prefixindex&namespace=2&from=Betacommand';
 link_b.innerHTML = 'My userspace';
 list_b.appendChild(link_b);
 list_ul.appendChild(list_b);

 var list_e = document.createElement("li");
 list_e.id = 'v-monobookjs';
 var link_e = document.createElement("a");
 link_e.href = '/User:Betacommand/monobook.js';
 link_e.innerHTML = 'My monobook.js';
 list_e.appendChild(link_e);
 list_ul.appendChild(list_e);

 var list_j = document.createElement("li");
 list_j.id = 'v-tablehelp';
 var link_j = document.createElement("a");
 link_j.href = '/User:Cactus.man/Table_Help';
 link_j.innerHTML = 'Table help';
 list_j.appendChild(link_j);
 list_ul.appendChild(list_j);

 var list_k = document.createElement("li");
 list_k.id = 'v-googlesearch';
 var link_k = document.createElement("a");
 link_k.href = 'http://www.google.co.uk/advanced_search?q=site:en.wikipedia.org';
 link_k.innerHTML = 'Search with Google';
 list_k.appendChild(link_k);
 list_ul.appendChild(list_k);

 var list_l = document.createElement("li");
 list_l.id = 'v-cacti';
 var link_l = document.createElement("a");
 link_l.href = '/User:Cactus.man/Cacti';
 link_l.innerHTML = 'Cacti';
 list_l.appendChild(link_l);
 list_ul.appendChild(list_l);

 corpo.appendChild(list_ul);
 boxclone.appendChild(corpo);
 document.getElementById("column-one").appendChild(boxclone);
}

if (window.addEventListener) window.addEventListener("load",mylinks,false);
else if (window.attachEvent) window.attachEvent("onload",mylinks);

// </nowiki></pre>