MediaWiki:Common.js
From Mitsipedia
Revision as of 03:34, 30 October 2011 by Cartman02au (talk | contribs) (Created page with "function positionSearch() { if (skin=='monobook' && document.getElementById('p-search') && document.getElementById('p-logo')) { var searchDiv = document.getElementById('p-s...")
Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
function positionSearch() {
if (skin=='monobook' && document.getElementById('p-search') && document.getElementById('p-logo')) {
var searchDiv = document.getElementById('p-search');
var sidebarDiv = document.getElementById('p-logo').nextSibling;
searchDiv.parentNode.removeChild(searchDiv);
sidebarDiv.parentNode.insertBefore(searchDiv,sidebarDiv);
}
}
addOnloadHook(positionSearch);