Dan.co.il form fixer

By n0nick Last update May 3, 2009 — Installed 118 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

There are 1 previous version of this script.

// ==UserScript==

// @name           Dan.co.il form fixer

// @namespace      http://userscripts.org/users/605

// @description    Fixes the display of the search form at dan.co.il

// @include        http://www.dan.co.il/*

// ==/UserScript==

selects = document.getElementsByTagName('select');
i = 0;
while(elm=selects.item(i++)) {
	if (elm.getAttributeNode('class').value=='sel') {
		elm.style.fontSize = '12px';
		elm.style.overflow = 'scroll';
	}
}