Help for this page

Select Code to Download


  1. or download this
    <div class="qsFormElement" id="qsMake">
        <select name="make" onChange="myQuickSearch.setMake(this.options[t
    +his.selectedIndex].value)">
    ...
            <option></option>
        </select>
    </div>
    
  2. or download this
    //construct new QuickSearch object, passing inventory JSData object
    var myQuickSearch = new QuickSearch(invJSData);
    ...
        // by default it will load all makes; this is how you get it to lo
    +ad models for just one make.
        if (newType == "preowned") myQuickSearch.setMake("Subaru");
    }