Jump to content

Wikipedia:Main Page/searchfocus.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Gracenotes (talk | contribs) at 01:24, 26 January 2008 (change name). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

// ==UserScript== // @name Wikipedia - Main Page search // @namespace Wikipedia // @description This script focuses (sets the cursor in) the search box on the English Wikipedia's Main Page // @include http://en.wikipedia.org/wiki/Main_Page // @include http://en.wikipedia.org/w/index.php?title=Main_Page // @author Gracenotes // @license Public domain // ==/UserScript==

window.addEventListener("load", function() { document.getElementById("searchInput").focus(); }, false)