User:Mike Dillon/Scripts/searchNewWindow.js
From Wikipedia, the free encyclopedia
If a message on your talk page led you here, please be wary of who left it. Code that you insert on this page could contain malicious content capable of compromising your account. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. If this is a .js page, the code will be executed when previewing the page.
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.
// 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 unspecified var searchNewWindowDefault; if (searchNewWindowDefault == null) { searchNewWindowDefault = false; } // Messages wfAddMsg("en", "searchNewWindowLabel", "New window?"); wfAddMsg("es", "searchNewWindowLabel", "ÂżVentana nueva?"); addOnloadHook(function () { // Find the search form var searchform = document.getElementById("searchform"); if (!searchform) return; // Get the first div inside (holds the input elements) var searchdiv = searchform.getElementsByTagName("div")[0]; if (!searchdiv) return; with (easydom) { // Build the checkbox and onchange handler var newWindowCheckbox = 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 div searchdiv.appendChild(div( { "class": "searchNewWindow" }, newWindowCheckbox, " ", label({ "for": "searchNewWindow" }, wfMsg("searchNewWindowLabel")))); } // If searchNewWindowDefault is true, click the checkbox if (searchNewWindowDefault) { newWindowCheckbox.click(); } }); // </nowiki></pre>