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.
// Requires: [[User:Mike Dillon/Scripts/i18n.js]], [[User:Mike Dillon/Scripts/easydom.js]]// <pre><nowiki>// searchNewWindowDefault: Controls default state of checkbox on page load; "false" if unspecifiedvarsearchNewWindowDefault;if(searchNewWindowDefault==null){searchNewWindowDefault=false;}// MessageswfAddMsg("en","searchNewWindowLabel","New window?");wfAddMsg("es","searchNewWindowLabel","¿Ventana nueva?");addOnloadHook(function(){// Find the search formvarsearchform=document.getElementById("searchform");if(!searchform)return;// Get the first div inside (holds the input elements)varsearchdiv=searchform.getElementsByTagName("div")[0];if(!searchdiv)return;with(easydom){// Build the checkbox and onchange handlervarnewWindowCheckbox=input({"id":"searchNewWindow","type":"checkbox","onchange":function(){if(this.checked){searchform.setAttribute("target","_blank");}else{searchform.setAttribute("target","_top");}}});// Add the checkbox and label to the divsearchdiv.appendChild(div({"class":"searchNewWindow"},newWindowCheckbox," ",label({"for":"searchNewWindow"},wfMsg("searchNewWindowLabel"))));}// If searchNewWindowDefault is true, click the checkboxif(searchNewWindowDefault){newWindowCheckbox.click();}});// </nowiki></pre>