User:OrenBochman/myscript.js
Appearance
Note: You may have to bypass your browser’s cache to see the changes. In addition, after saving a sitewide CSS file such as MediaWiki:Common.css, it will take 5-10 minutes before the changes take effect, even if you clear your cache.
- Mozilla / Firefox / Safari: hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Command-R on a Macintosh);
- Konqueror and Chrome: click Reload or press F5;
- Opera: clear the cache in Tools → Preferences;
- Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5.
- This user script lacks a documentation subpage. Please create it.
- Useful links: root page • root page’s subpages • links • redirects • your own
if ( $.cookie("OBNewStuff") )
{
importScript("User:OrenBochman/test1.js")
importScript("User:OrenBochman/test2.js")
}
$(function () {
if(document.getElementById('OBNewStuff-enable-button'))
{
document.getElementById('OBNewStuff-enable-button').innerHTML = ""
var toggle = newNode('span', {click: function ()
{
if( $.cookie("OBNewStuff") ){
$.cookie("OBNewStuff", null,{path:"/"})
toggle.innerHTML = "Enable test scripts."
}
else{
$.cookie("OBNewStuff",1,{expires:30,path:"/"})
toggle.innerHTML = "Disable test scripts."
}
} }, ($.cookie("OBNewStuff")?"Disable":"Enable")+" test scripts.")
document.getElementById('OBNewStuff-enable-button').appendChild(toggle);
}
})