User:UncleGiggo/test.js
From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.
function test() { document.editform.wpTextbox1.value = "\congrats test worked -->"; //Add the base text for the sandbox document.editform.wpSummary.value = "WEEEEEE"; //Make a descriptive edit summary document.editform.wpMinoredit.checked = true; //Make it a minor edit document.editform.wpSave.click(); //Submit it! } function addTestTab() { if( wgPageName == "User:UncleGiggo" && ( wgAction == "edit" || wgAction == "submit" ) ) //Add the tab for previews, edit conflicts, and bare editing of the page; { addToolboxLink( 'javascript:test()', 'test', '', '', '' ) } } addOnloadHook(addTestTab); importScript('User:Voice of All/Addtabs/monobook.js');