Multiple Pull/Drop Down Lists

S

Susan

I have tried all of the suggestions given and they don't
help. I have two pull down lists each containing several
different documents for selection by anyone needing the
information (e.g., Monthly Reports for two separate
groups). I was finally given some JavaScript code to use
(see below), however, even placing each pull down into a
separate cell of a table does not help. I continue to
have the problem of the documents from list two being
displayed when selecting a document from list one. I'm
at
a loss as to how to proceed. Any other suggestions would
be appreciated.

(<script language="JavaScript">
<!--
function setaction(jumpto)
{
if (jumpto == 0) window.location
= "";
if (jumpto == 1) window.location
= "";
if (jumpto == 2) window.location = "";
if (jumpto == 3) window.location = "";
if (jumpto == 4) window.location = "";
if (jumpto == 5)
window.location = "";
if (jumpto == 6)
window.location = "";
if (jumpto == 7)
window.location = "";
if (jumpto == 8)
window.location = "";
if (jumpto == 9)
window.location = "";
if (jumpto == 10)
window.location = "";
if (jumpto == 11)
window.location = "";
if (jumpto == 12)
window.location = "";
if (jumpto == 13) window.location = "";


}
// --></script>
<form form method="POST">
<div align="center">
<div align="left">
<pre> <select name="dest" size="1">
<option>System Disposition List v27.2(30Sept03)
</option><option>System Disposition
Categories</option><option></option><option></option><opti
o
n></option><option></option><option></option><option></opt
i
on><option></option><option></option><option></option><opt
i
on></option><option></option><option></option></select>
<input TYPE="BUTTON" VALUE="GO" ONCLICK="setaction
(form.dest.selectedIndex)"> </pre>
</div>
</div>
</form form>
 
J

Jim Buyens

Try the approach described at:

Using Drop-Down Boxes for Hyperlinks
http://www.interlacken.com/winnt/tips/tipshow.aspx?tip=40

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top