Hi Dan
Thank you for taking the time to help me, I gather that I have to do this in
the code section of Front page.....
So each page has a htm after it.....I got a drop down script from another
site and put it in my code section like it said to do, and changed their code
to the catergories that I have instead....
Here is part of the script that I have from the script site which is in the
head part of the code
Begin
function formHandler(form) {
var windowprops = "height=500,width=500,location=no,"
+ "scrollbars=no,menubars=no,toolbars=no,resizable=yes";
var URL = form.site.options[form.site.selectedIndex].value;
popup = window.open(URL,"MenuPopup",windowprops);
}
// End -->
and here is the start of what is in the body part.....
<a href="Newspapers%20&%20Mags.htm"><!--webbot bot="Validation"
s-display-name="Adult" b-value-required="TRUE" --><select name="Select One"
SIZE=1 onChange="formHandler(this.form)" multiple>
<option value="Adult">Adult</option>
<option value="Astrology">Astrology</option>
<option value="Aviation">Aviation & Defense</option>
<option value="Bikers">Bikers,Lifestyle & Tattoos</option>
<option value="Boating">Boating</option>
I really would appreciate any help that you might be able to give me.....
Thank you so much,
From a silly Aussie
Dan L said:
Yes you have to make separate pages if you're going to link to them. In the
drop down list, add a link to the pages. For example:
<form>
<select onChange="if(options[selectedIndex].value)
window.location.href=(options[selectedIndex].value)">
<option>Select...
<option value="home.htm">Home</option>
<option value="links.htm">Links</option>
<option value="contact.htm">Contact</option>
</select>
</form>
Powderpuff said:
I am new at this. I have a drop down menu with all the items listed, how do I
click on a item in the list so that it takes me to the page that I have
clicked on. I gather you have to make seperate pages for all the lists in the
menu.
PLEASE HELP someone.
Sure hope this makes sense.