Gebruiker:Jeandré du Toit/monobook.js

vanuit Wikipedia, die vrye ensiklopedie.

Let wel: Na die voorkeure gestoor is, moet u blaaier se kasgeheue verfris word om die veranderinge te sien: Mozilla: klik Reload (of Ctrl-R), IE / Opera: Ctrl-F5, Safari: Cmd-R, Konqueror Ctrl-R.

// This will add an [edit top] link at the top of all pages except preview pages
// by User:Pile0nades
 
setTimeout("editTopLink()", 0) // this is equivalent of onload
function editTopLink() {
  // if this is preview page or generated page, stop
  if(document.getElementById("wikiPreview") || window.location.href.indexOf("w/index.php?title=Special:") != -1) return;
 
  // get the page title
  var pageTitle = document.title.split(" - ")[0].replace(" ", "_"); 
 
  // create div and set innerHTML to link
  var divContainer = document.createElement("div");
  divContainer.innerHTML = '<div class="editsection" style="float:right;margin-left:5px;margin-top:3px;">[<a href="/w/index.php?title='+pageTitle+'&action=edit&section=0" title="'+document.title.split(" - ")[0]+'">edit top</a>]</div>';
 
  // insert divContainer into the DOM before the h1
  document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
 
}
 
 
 
//RFC 3339 in sig
//by User:Bblackmoor
function sigFix () {
document.getElementById("toolbar").innerHTML=document.getElementById("toolbar").innerHTML.replace('--~~' + '~~',' -- [[User:Jeandré|Jeandré]], {{subst' + ':CURRENTYEAR}}-{{subst' + ':CURRENTMONTH}}-{{subst' + ':CURRENTDAY2}}[[User talk:Jeandré|t]]{{subst' + ':CURRENTTIME}}z');
}
 
function reformatMyPage() {
  sigFix();
}
 
if (window.addEventListener) window.addEventListener("load",reformatMyPage,false);
else if (window.attachEvent) window.attachEvent("onload",reformatMyPage);