Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page.
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.
/* Unverified imageAdds an unverified image tag when you press a tab, if the tag isn't already there. Depends on addLink() function. Otherwise should be self-contained.<pre><nowiki> */functionunverified(){document.editform.wpSummary.value='needs a source and copyright tag - see [[Wikipedia:Image copyright tags]]';// Find the edit boxvartxt=document.editform.wpTextbox1;// Add a tag to the edit box, if it doesn't have one alreadyvarsummary='{{unverified}}';if(txt.value.indexOf(summary)==-1){txt.value+=summary;}// Focus the edit box?txt.focus();// Press the Save page buttondocument.editform.wpSave.click()}// Create a tab that calls this function when pressedaddOnloadHook(function(){if(document.title.indexOf("Editing Image:")==0){addLink('p-cactions','javascript:unverified()','tag','ca-unverified','Adds a tag to an unverified image','','');}});// </nowiki></pre>