by ShopSite Lauren » Wed Jun 20, 2007 3:56 pm
The only way to do this is to add your own code to the template/area where you would like these drop down lists to appear. Below is some example code to setting this up:
Include the following in the <head> of your page/template:
-----------------------------------------------------------------------------------
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
-----------------------------------------------------------------------------------
Then where you would like the jump menu(s), you would set up your code similar to:
-----------------------------------------------------------------------------------
<select name="select" onChange="MM_jumpMenu('parent',this,0)">
<option selected>Browse By Brand</option>
<option value="Brand1.html">Brand 1</option>
<option value="Brand2.html">Brand 2</option>
<option value="Brand3.html">Brand 3</option>
<option value="Brand4.html">Brand 4</option>
</select>
-----------------------------------------------------------------------------------
-ShopSite Lauren