Note – after saving, you may have to bypass your browser’s cache to see the changes.

  • 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.

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);
	}
 })