Sandy,
Here's a little script I snagged from somewhere. It's a javascript that you
plug in the url and when selected, it will forward to the page diplayed:
<!-- Called when deck selection changes -->
<script language="JavaScript">
<!-- Begin
function formHandler(selection){
if (selection)
{
var URL = selection[selection.selectedIndex].value;
window.location.href = URL;
}
}
// End -->
</script>
<form name="DeckForm">
<select onchange="javascript:formHandler(document.DeckForm.site)" size="1"
name="site">
<option value="#">- Select a Deck -</option>
<option
value="
http://montrosetravel.com/index.php?id=884,888,0,0,1,0"
selected>Aloha</option>
<option
value="
http://montrosetravel.com/index.php?id=884,889,0,0,1,0">Baja</option>
</select>
</form>
In the option value, place the url. Between the option tags, place the name
you want displayed on the screen. You can add as many options as you want.
--
Chris Freeman
IT Project Coordinator
Sandy said:
For FrontPage 2003 - I need to create a drop-down list in a frame with a
number of items in the list. When I select an item in the list I need that
item to open a page in the frame to the right. Each item in the list needs
to open a seperate page.
How do I create this type of drop-down list?