Drop Down Menus

L

Loren Shufeldt

I apologize if I am in the wrong newsgroup for this question. If so please
advise which group to contact and I will re-post.

My question: Is there a way to insert graphics (photos) into a drop down
menu, or is text all that is acceptable? The drop down menu is JavaScript.

Thanks.

Loren D Shufeldt
 
J

Jon

Hi,
we'd need to see the script to be able to answer that - a well-written
script would allow any combination of text images and links in the drop
downs. A badly written script (of which there's quite a few) probably
wouldnt.

Can you post up a url to your page so we can take a look

Jon
Microsoft MVP - FP
 
L

Loren Shufeldt

Again I will apologize upfront because I may have mislead you. When I said
the drop down was written in JavaScript I am probably not correct. The
servicing routine is JavaScript and the menu is simply an option menu. This
is not published yet so no url to post. What I am trying to accomplish is
to save space on a page by not having all those thumbnails for users to
click on. I just want them to drop down when wanted. Here is what I have
tried thus far:

(Located in the head section)
<script language="JavaScript">
<!--
function goToURL(form)
{
var myindex=form.dropdownmenu.selectedIndex
if(!myindex=="")
{
window.location.href=form.dropdownmenu.options[myindex].value;
}
}
//-->
</script>

(Located in the body section)
<Form>
<p class="dropdownhead">&nbsp;&nbsp;Photo Gallery
<select name="dropdownmenu" size="1" onChange="goToURL(this.form)">
<option value="">- Select -</option>
<option value="images/Winter%20Shed%20f.jpg"><img
src="images/Winter%20Shed%20s.jpg" width="40" height="30">Winter
Shed</option>
</select>
</form></p>

Don't know if this will help you analyze my situation.

Loren Shufeldt
 

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

Similar Threads


Top