NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name CRO Broader Search
// @namespace https://callcenter15.ihotelier.com/
// @version 0.1
// @description Changes the default settings on the search page to not include a from date and include all sources.
// @license MIT
// @author Jacob Wolfe
// @match https://callcenter15.ihotelier.com/callcenter-1.5/searchReservation/*
// @updateURL https://openuserjs.org/meta/mr.jdwolfe/CRO_Broader_Search.meta.js
// ==/UserScript==
(function() {
'use strict';
document.getElementById('fromDate').value = '';
document.getElementsByName('source')[0].checked = true;
})();