brand select
Displays a pull-down jump menu to view products for the selected brand.
CODE
<cfinclude template="#include#/brandSelect.cfm">
The <h4> title is set in the Resource Bundle as variable productBrandSelectTitle.
Optional Parameters that may be set:
attributes.brandSelectClass - defaults to 'selectMenu' attributes.brandSelectText - default defined in resource bundle as productBrandSelectText attributes.brandSelectSize - sets the size (in rows) of the select form element.
CSS
/* --- Brand Select Form--- */
#brandSelect
HTML
<form id="brandSelect" name="brandSelect" action="#" class="selectMenu" method="post">
<h4>Shop by Brand</h4>
<select name="jumptobrand" size="1" onchange="#">
<option value="">browse by brand...</option>
<option value="#">Brand One</option>
</select>
</form>


