jump to

  • Thread starter Thread starter LA
  • Start date Start date
L

LA

Need an easy to use jump to script (form with drop down
menu that takes you to the page selected)

Using FP 2000. Is it safe to cute and paste most scripts
from the freebie sites?
 
Hi,
you shouldn't need a freebie script for this. Make your dropdown the way you
want then flip to html view and modify your <select> tag so it looks like
this
<select
onchange="if(this.option.selectedIndex>0)location.href=this.options[this.opt
ions.selectedIndex].value;">
<option value="">Choose A Link</option>
<option value="http://www.microsoft.com">Microsoft</option>
<option value="http://www.ibm.com">IBM</option>
....etc.....

Jon
Microsoft MVP - FP
 
Ahh great I knew it could be done but told here I needed a
script. Thanks I've got the form made just couldn't figure
out how to get it to function. I'll give it a shot.

-----Original Message-----
Hi,
you shouldn't need a freebie script for this. Make your dropdown the way you
want then flip to html view and modify your <select> tag so it looks like
this
<select
onchange="if(this.option.selectedIndex>0) location.href=this.options[this.opt
ions.selectedIndex].value;">
<option value="">Choose A Link</option>
<option
 
Hi LA,

Take a look at J-Bots Drop Down Jump component at
http://www.websunlimited.com/order/Product/navigation/jump.htm
--
Mike -- FrontPage MVP '97-'02
http://www.websunlimited.com
FrontPage Add-ins Since '97 2003 / 2002 / 2000 Compatible
----------------------------------------------------------------------------
--------------------
If you think I'm doing a good job, let MS know at (e-mail address removed)

LA said:
Well tried what you said but not working?
-----Original Message-----
Hi,
you shouldn't need a freebie script for this. Make your dropdown the way you
want then flip to html view and modify your <select> tag so it looks like
this
<select
onchange="if(this.option.selectedIndex>0) location.href=this.options[this.opt
ions.selectedIndex].value;">
<option value="">Choose A Link</option>
<option
value="http://www.microsoft.com">Microsoft said:
<option value="http://www.ibm.com">IBM</option>
....etc.....

Jon
Microsoft MVP - FP




.
 
can you define "not working" or better yet stick your page up on the web
somewhere - if I can see your page I can get it working for you. Hopefully
you won't need to check out J-Bots just yet :-)

Jon

LA said:
Well tried what you said but not working?
-----Original Message-----
Hi,
you shouldn't need a freebie script for this. Make your dropdown the way you
want then flip to html view and modify your <select> tag so it looks like
this
<select
onchange="if(this.option.selectedIndex>0) location.href=this.options[this.opt
ions.selectedIndex].value;">
<option value="">Choose A Link</option>
<option
value="http://www.microsoft.com">Microsoft said:
<option value="http://www.ibm.com">IBM</option>
....etc.....

Jon
Microsoft MVP - FP




.
 
Back
Top