Jump to content

User:Sverdrup/monobook.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Sverdrup (talk | contribs) at 05:45, 25 August 2005. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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 Wikipedia:Bypass your cache.
// Live Preview customization,
// edit this to your own liking.


wpUserName   = 'Sverdrup';   // User name to display in signatures

wpShowImages = true;      // Enable downloading and displaying of images


// Include Live Preview...


document.write('<script type="text/javascript" src="http://en.wikipedia.org/w/index.php?title=User:Pilaf/livepreview.js&action=raw&ctype=text/javascript&dontcountme=s"></script>');


// Now set everything up


window.onload = Main;


function Main()
{

 LivePreviewInstall();

 // You may include here other "extensions"

 replaceGoogle();
}


/* This is to keep track of who is using the Live Preview: [[User:Pilaf/livepreview.js]] */

// -- end Live Preview

// Google search code

function replaceGoogle() {
var googlePlaceholder = document.getElementById('google-search');
googlePlaceholder.innerHTML = '<form method="GET" action="http://www.google.com/search"> <input type="hidden" name="ie" value="UTF-8"> <input type="hidden" name="oe" value="UTF-8"> <table bgcolor="#FFFFFF"><tr><td> <a href="http://www.google.com/"> <img src="http://www.google.com/logos/Logo_40wht.gif"  border="0" alt="Google" align="absmiddle"></a> <input type="text" name="q" size="25" maxlength="255" value=""> <input type="submit" name="btnG" value="Google Search"> </td></tr></table> </form>';
}


function focusSearch () {
    document.getElementById('searchInput').focus();
}

document.attachEvent("onload", forcusSearch);