drop down box not linking
I am using FrontPage 2003 and creating drop down boxes. When you click on
the selection, nothing happens.
Re: drop down box not linking
You have to use JavaScript in order to make it a JumpMenu
--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================
"Dgwood90" <Dgwood90 [at] discussions.microsoft.com> wrote in message
news:DD3127A4-BE8A-4141-8704-6177D8FA215C [at] microsoft.com...
>I am using FrontPage 2003 and creating drop down boxes. When you click on
> the selection, nothing happens.
Re: drop down box not linking
See:
http://javascript.internet.com/navigation/jump-menu.html
--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================
"Thomas A. Rowe" <tarowe [at] mvps.org> wrote in message news:ehP6VIMVIHA.6092 [at] TK2MSFTNGP06.phx.gbl...
> You have to use JavaScript in order to make it a JumpMenu
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
>
> http://www.Ecom-Data.com
> ==============================================
>
>
> "Dgwood90" <Dgwood90 [at] discussions.microsoft.com> wrote in message
> news:DD3127A4-BE8A-4141-8704-6177D8FA215C [at] microsoft.com...
>>I am using FrontPage 2003 and creating drop down boxes. When you click on
>> the selection, nothing happens.
>
>
Re: drop down box not linking
Is it a jump menu or a drop down select with a down arrow you click?
If a drop down select it needs to be something like this:
<form>
<p align="center"><b>Select a site </b>
<select id="Choice" style="color: #0000FF" size="1" name="mySelect">
<option value="">Select one</option>
<option value="http://altavista.com">AltaVista</option>
<option value="http://www.yahoo.com">Yahoo</option>
<option value="http://www.google.com">Google</option>
</select>
<input type="button" value="Go" onclick="window.open(Choice.options[Choice.selectedIndex].value)">
</p>
</form >
--
Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
"Dgwood90" <Dgwood90 [at] discussions.microsoft.com> wrote in message
news:DD3127A4-BE8A-4141-8704-6177D8FA215C [at] microsoft.com...
>I am using FrontPage 2003 and creating drop down boxes. When you click on
> the selection, nothing happens.
Re: drop down box not linking
Thanks, works great.
"Thomas A. Rowe" wrote:
> See:
> http://javascript.internet.com/navigation/jump-menu.html
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
>
> http://www.Ecom-Data.com
> ==============================================
>
>
> "Thomas A. Rowe" <tarowe [at] mvps.org> wrote in message news:ehP6VIMVIHA.6092 [at] TK2MSFTNGP06.phx.gbl...
> > You have to use JavaScript in order to make it a JumpMenu
> >
> > --
> > ==============================================
> > Thomas A. Rowe
> > Microsoft MVP - FrontPage
> >
> > http://www.Ecom-Data.com
> > ==============================================
> >
> >
> > "Dgwood90" <Dgwood90 [at] discussions.microsoft.com> wrote in message
> > news:DD3127A4-BE8A-4141-8704-6177D8FA215C [at] microsoft.com...
> >>I am using FrontPage 2003 and creating drop down boxes. When you click on
> >> the selection, nothing happens.
> >
> >
>
>
>
Re: drop down box not linking
Thanks, tried your way also, it works great also, thanks for the help.
"Steve Easton" wrote:
> Is it a jump menu or a drop down select with a down arrow you click?
> If a drop down select it needs to be something like this:
>
> <form>
> <p align="center"><b>Select a site </b>
> <select id="Choice" style="color: #0000FF" size="1" name="mySelect">
> <option value="">Select one</option>
> <option value="http://altavista.com">AltaVista</option>
> <option value="http://www.yahoo.com">Yahoo</option>
> <option value="http://www.google.com">Google</option>
> </select>
> <input type="button" value="Go" onclick="window.open(Choice.options[Choice.selectedIndex].value)">
> </p>
> </form >
>
> --
>
> Steve Easton
> Microsoft MVP FrontPage
> FP Cleaner
> http://www.95isalive.com/fixes/fpclean.htm
> Hit Me FP
> http://www.95isalive.com/fixes/HitMeFP.htm
>
>
>
> "Dgwood90" <Dgwood90 [at] discussions.microsoft.com> wrote in message
> news:DD3127A4-BE8A-4141-8704-6177D8FA215C [at] microsoft.com...
> >I am using FrontPage 2003 and creating drop down boxes. When you click on
> > the selection, nothing happens.
>
>
>