Jump to content

User talk:CmdrDan/monobook.js

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Xeno (talk | contribs) at 18:10, 25 March 2014 (Xeno moved page User talk:TheMightyHercules/monobook.js to User talk:CmdrDan/monobook.js: Automatically moved page while renaming the user "TheMightyHercules" to "CmdrDan"). The present address (URL) is a permanent link to this version.
(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);