PDA

View Full Version : How do you create "Menus"?


gregheinz
03-19-2004, 04:16 PM
Can someone give me a brief explanation of how to create the "menus" that are mentioned in the iSilo Display Sample? Thanks...

iSilo
03-19-2004, 07:26 PM
The following example is from the iSilo Display Sample, available from the support (http://www.isilo.com/support/index.htm) page:

<select onchange="GoURLValue(this);">
<option value="menus.htm">Menus</option>
<option value="basic.htm" selected>Basic</option>
<option value="colors.htm">Colors</option>
<option value="width.htm">Width</option>
<option value="long.htm">Long</option>
</select>
Set the onchange attribute of the select to "GoURLValue(this);" and then for each of the option elements, set the value attribute to the corresponding URL to jump to when the item is selected.