Focus First Textbox

By JoeSimmons Last update Apr 11, 2009 — Installed 3,436 times.
// ==UserScript==
// @name           Focus First Textbox
// @namespace      http://userscripts.org/users/23652
// @description    Focuses the first textbox on the page. Include pages on which you want it to work
// @include        http://scrapetorrent.com/Search/
// @copyright      JoeSimmons
// ==/UserScript==

var box = document.evaluate("//input[@type='text']",document,null,9,null).singleNodeValue;

if(box!=null && box) {
box.focus();
}