currency select
Places a currency selector in the layout. Product prices will displayed in the selected currency. The list of available currencies is set in the Admin. Currency exchange rates are automatically updated daily.
CODE
<cfinclude template="#include#/currencyselect.cfm">
The <h4> title is set in the Resource Bundle as variable currencySelectFormTitle.Optional Parameters:
attributes.currencySelectClass - defaults to 'selectMenu' like other select forms (currency, etc.). This allows a single style to format all select menus if desired.
CSS
/* --- Currency Select--- */
#currencySelect.selectMenu
HTML
<form id="currencySelect" action="#" class="selectMenu" method="post">
<h4>Currency</h4>
<select name="jumptocurrency" size="1" onchange="#">
<option value="#" selected >US Dollars</option>
<option value="#">Canadian Dollars</option>
</select>
</form>


