By WCityMike
—
Last update
Jan 31, 2008
—
Installed
211 times.
// ==UserScript==
// @name RTA Trip Planner - Set Defaults
// @author Mike Harris <windycitypoe@gmail.com>
// @description By changing the values below, you can alter the default settings for buses, walking, and type of trip on the RTA Trip Planner. Remember that the first option on any of the lists is 0, the second is 1, the third is 2, and so on.
// @include http://tripsweb.rtachicago.com/
// ==/UserScript==
(function () {
document.forms[0].elements[16].selectedIndex = 1;
document.forms[0].elements[17].selectedIndex = 1;
document.forms[0].elements[18].selectedIndex = 0;
})();