Focus First Textbox

By JoeSimmons Last update Apr 11, 2009 — Installed 754 times. Daily Installs: 0, 0, 3, 0, 2, 5, 0, 0, 0, 0, 3, 0, 1, 1, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 6, 6, 0, 2, 0, 1, 1
// ==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();
}