Jump to content

User talk:CmdrDan/monobook.js

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by CmdrDan (talk | contribs) at 06:11, 3 March 2007 (Created). 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)

function externISBN() {

var magicURL = "http://www.amazon.com/exec/obidos/ASIN/MAGICNUMBER/eldridgeto-20";
var magicRegex = /MAGICNUMBER/ig;
if(wgPageName != "Special:Booksources" && wgPageName != "Wikipedia:Book_sources"){
  for (var i = 0; i < document.links.length; i++) 
  {       
      if( document.links[i].href.match(/isbn=(.*)/) ) {
        document.links[i].href=magicURL.replace(magicRegex, RegExp.$1);
      }
  }
}

}

addOnloadHook(externISBN);