By Joseph De Araujo
![]() Here's a snapshot of what the menu looks like all coded up. When you click on one of the links ie. Menu 1, Menu 2, Menu 3, Menu 4, Menu 5, this will expand or contract the submenu for that menu item. Basically, the end user must have JavaScript enabled to allow the submenus to work. |
First I'm going to start with the 5 menus items. Here's the code that I'm using, which is very simple; 5 hyperlinks. I will need to apply a style to these level one links, so I will make a class style called "menu1".
<a class="menu1">Menu 1</a>
<a class="menu1">Menu 2 </a>
<a class="menu1">Menu 3 </a>
<a class="menu1">Menu 4 </a>
<a class="menu1">Menu 5 </a>
Now I will create the menu1 class style and put it in the head of my document. So far we haven't done anying revolutionary. I won't explain the style that I've applied here because it's pretty straight forward - it's just a background image and the display:block makes it display like a rectangle.
<style type="text/css">
.menu1{
background-image:url(images/menudiv1bg.gif);
margin-left:25px;
padding-left:20px;
padding-top:2px;
padding-bottom: 2px;
display:block;
text-decoration: none;
color: #000000;
height: 20px;
}
</style>
Now I'll add the sub menus in place exactly where they will appear. In this part, we will use some small tricks to setup the alignment. Firstly, we'll wrap the whole submenu in a div that has a unique id for each menu. You can choose your own names for the div tags, but the main purpose of the div having a unique id is so that JavaScript can target that div specifically and make it appear or disappear. I also add a class style called 'hide' so that I can choose to hide all of the submenus from within my style sheet. The links are then listed within the div just like the main menu items and are given a submenu class style, to allow me to control the look of those in my style sheet as well:
<a class="menu1" >Menu 1</a>
<div id="mymenu1" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
<a class="menu1">Menu 2 </a>
<div id="mymenu2" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
<a class="menu1">Menu 3 </a>
<div id="mymenu3" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
<a class="menu1">Menu 4 </a>
<div id="mymenu4" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
<a class="menu1">Menu 5 </a>
<div id="mymenu5" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
I'll add the submenu and the 'hide' style to my style sheet now:
.submenu{
background-image: url(images/submenu.gif);
display: block;
height: 19px;
margin-left: 38px;
padding-top: 2px;
padding-left: 7px;
color: #333333;
}
.hide{
display: none;
}
I'll also create the style that will show the hidden div tags (submenus):
.show{
display: block;
}
<script language="JavaScript" type="text/JavaScript">
<!--
menu_status = new Array();
function showHide(theid){
if (document.getElementById) {
var switch_id = document.getElementById(theid);
if(menu_status[theid] != 'show') {
switch_id.className = 'show';
menu_status[theid] = 'show';
}else{
switch_id.className = 'hide';
menu_status[theid] = 'hide';
}
}
}
//-->
</script>
Place this code in the <head> part of your web page. Next, I'm inserting the onClick event to the main menu links to call the showHide function when you click on the link:
<a class="menu1" onclick="showHide('mymenu1')">Menu 1</a>
<div id="mymenu1" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
<a class="menu1" onclick="showHide('mymenu2')">Menu 2 </a>
<div id="mymenu2" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
<a class="menu1" onclick="showHide('mymenu3')">Menu 3 </a>
<div id="mymenu3" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
<a class="menu1" onclick="showHide('mymenu4')">Menu 4 </a>
<div id="mymenu4" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
<a class="menu1" onclick="showHide('mymenu5')">Menu 5 </a>
<div id="mymenu5" class="hide">
<a href="#" class="submenu">Link One here</a>
<a href="#" class="submenu">Link Two here</a>
<a href="#" class="submenu">Link Three here</a>
<a href="#" class="submenu">Link Four here</a>
</div>
The menu_status = new Array(); line will create a container ready to store the current state of your menu. This corresponds to the sections of the code that actually say what this menu_status now equals. eg. menu_status = 'show'; and menu_status = 'hide';
There's a function called showHide(theid) but this won't do anything unless it is called from within your HTML code. 'theid' is the id of the menu being shown or hidden, and it's called during the onClick even of that menu, such as onclick="showHide('mymenu5')".
Ok, so the function loads ready to be used, but the page continues to load...
Your main links and submenus load, but only the main links show because the 'hide' style that's applied to the submenus will hide the submenus. The submenus have in fact loaded already, they just aren't showing just yet.
If you click on a main menu link, then here's what happens:
|
said this on 26 Dec 2005 3:02:22 PM CST
This is excellent! Thank you very much! Your tutorial of an expanding menu was just about the only one that I understood, and wasn't needlessly complicated. It is also very cross-platform, which isn't something I can say for some of the others I've run across. I will definetely reccomend your tutorial(s) to others when asked. Linked in my favorites and from my website.
Thank you again, Jennifer |
|
said this on 08 Jan 2006 6:54:36 PM CST
Thanks for the help, it actually worked!
[ Editors note: Really? It worked? Funny that :) ] |
|
said this on 01 Feb 2006 7:58:47 PM CST
Yay! Thank you so much! It's exactly what I was looking for. I'd found a way over complicated version that didn't work with 3 layers cause you could only have one menu open and I couldn't work out how to stop that. But this is perfect! Such simple coding too, I think I may learn it _
|
|
said this on 04 Feb 2006 5:25:39 PM CST
Yeah just what I needed. And similar to comment #2 I´ve been searching the net over and over for a simple and flexible "3-layer-expanding-menu" et voilá I found it here. And last but not least I understood what I did. Thanks to you.
|
|
said this on 08 Feb 2006 12:46:32 PM CST
Nice. but the cursor des not change on mouse over like it would fr a normal button. It will through some people i am sure
|
|
said this on 23 Feb 2006 8:46:02 PM CST
Excellent article. simple & powerful.
Although I would like to get the background images used inside the CSS code in order to get the exact appeal of the example image. It looks wonderful! |
|
said this on 12 Mar 2006 5:43:58 PM CST
Very simplified article... good to see someone get it right. I would like to learn how to add persistent states to this function. I'm sure it would be as simple as adding a cookie function into the .js, I guess that's the next tutorial I'm looking for.
|
|
said this on 21 Mar 2006 5:59:49 AM CST
Excellent, thank you so much, this is simple, elegant and it works. Some info on creating persistant states would be very useful. Thanks again.
|
|
said this on 02 Apr 2006 4:55:16 AM CST
Very nice! I modified the script slightly to hide sub-menus for non-clicked items;
The Javascript: function showHide(theidPrefix, theidNum) // show/hide clicked menu element if (document.getElementById) var switch_id = document.getElementById(theidPrefixtheidNum); if(menu_statustheidPrefixtheidNum != 'show') switch_id.className = 'show'; menu_statustheidPrefixtheidNum = 'show'; else switch_id.className = 'hide'; menu_statustheidPrefixtheidNum = 'hide'; // hide non-clicked menu elements n = 1; while( document.getElementById(theidPrefixn) ) if(n !== theidNum) var hide_id = document.getElementById(theidPrefixn); hide_id.className = 'hide'; menu_statustheidPrefixn = 'hide'; n; To use it, the onclick function call on your links is modified to be: onclick="showHide('mymenu', 2)" The <div> IDs stay the same, ie "mymenu1", "mymenu2", etc. |
|
said this on 22 Jan 2008 10:16:24 AM CST
thks for a great update to the script. I don't know javascript and was trying to use the updated script:
Do you know why it is not working? |
|
said this on 30 Apr 2006 10:43:15 PM CST
I liked how the geek speak was at the bottom. I am just an 18-yr-old interested in computers and I learned html and am beginning javascript. Your methods were new to my experience and interesting to peruse.
|
|
said this on 20 May 2006 8:27:09 PM CST
very nice! i will be sure to use! :-)
|
|
said this on 08 Jun 2006 10:52:01 PM CST
yeap, this is good stuff, but a little of putting the menus in persistent state would make this script even better, hope someone is working on the persistent method.
|
|
said this on 21 Jun 2006 10:39:23 AM CST
this is great! It took me long time to find such a useful and simple solution to create a nice menu!
|
|
said this on 21 Jun 2006 5:05:48 PM CST
Great tutorial, very easy to understand. I am also looking for a persistent state of this. Also for teh person that suggested putting in href="javascript:?" in the link to create the normal mouseover action works but creates an error on the page. Anyone know a way to remove this error?
|
|
said this on 28 Jun 2006 3:43:21 PM CST
To fix the error with making the menus have a "click cursor", instead of typing href="javascript:?", type href="javascript:;". That way, the actual javascript will run normally, even though there is nothing to run in the script.
|
|
said this on 05 Jul 2006 4:24:34 PM CST
Thanks a lot! This is exactly what I've been looking for
|
|
said this on 11 Jul 2006 2:01:14 AM CST
This was very helpful - thanks!!!
|
|
said this on 11 Jul 2006 9:51:46 AM CST
Thank You so much ... I've been looking for this for ages, never found a script for this half as good or half as clean... Thanks again!
|
|
said this on 20 Jul 2006 11:55:17 PM CST
Excellent! I was browsing the net for a while and all the tutorials were so difficult to understand.This was so easy to understand.Nice Job!!
|
|
said this on 16 Aug 2006 5:18:59 AM CST
Good ones indeed....
Regards Satya |
|
said this on 28 Aug 2006 2:13:31 PM CST
I've looked at many and this is the best and cleanest one.
|
|
said this on 30 Aug 2006 10:37:10 PM CST
Excellent article...to the point and complete...Loved it.
|
|
said this on 09 Sep 2006 3:46:53 PM CST
thank you so much for this code! I'm 13, and even I understand it! just what I was looking for :
|
|
said this on 12 Sep 2006 9:41:29 AM CST
This is excellent!! Thank you so much !!
|
|
said this on 18 Sep 2006 4:59:28 PM CST
finally something thats easy to understand, excellent tut thanks for sharing your knowledge
|
|
said this on 21 Sep 2006 7:26:06 PM CST
This was an amzazing tutorial thank you so much. One question though, how do you make the menu open when you just roll your mouse over? Please edit my comment and give me the code. Thanks.
|
|
said this on 28 Sep 2006 5:05:16 AM CST
Great job. THank you very much!!
|
|
said this on 04 Oct 2006 12:39:31 AM CST
A good example and explained well. I suggest that you only need to query the current classname of the object and switch it between hide/show. Also you can collapse the last one expanded by keeping the name of the last expanded one.
<script> var last_expanded = ''; function showHide(id) { var obj = document.getElementById(id); var status = obj.className; if (status == 'hide') { if (last_expanded != '') { var last_obj = document.getElementById(last_expanded); last_obj.className = 'hide'; } obj.className = 'show'; last_expanded = id; } else { obj.className = 'hide'; } } </script> |
|
said this on 10 Oct 2006 1:45:29 AM CST
thanks, that's exactly what i was looking for. if it worked for me i'll be able to make good presentation, thanks once again
|
|
said this on 12 Oct 2006 10:05:44 AM CST
Thank you! This is everything I have needed!
|
|
said this on 17 Oct 2006 4:52:48 AM CST
how much of a geek does jerry at comment #7 sound. Jerry if your reading there's something you can gert to help your coding its called a life get out more and chase girls. Incidentally tutorial looks great just what I've been falling asleep looking for, for the last 20 mins
|
|
said this on 19 Oct 2006 3:30:06 PM CST
Thanks!! This is exactly what I was looking for!!!
|
|
said this on 21 Oct 2006 6:34:41 AM CST
It is simple to understand and encouraging to learn new things. One thing I couln't get the background image covers the whole page . how do youmake it so that it didn't pass the menu boundry.thanx
|
|
said this on 22 Oct 2006 11:41:52 AM CST
If everyone had tutorials like this!
|
|
said this on 06 Nov 2006 10:01:16 AM CST
Thanks this is great - and the extra JS script from Dave helped out a lot.
|
|
said this on 16 Nov 2006 12:47:08 AM CST
very nice and thanks to dave aswell
|
|
said this on 19 Nov 2006 8:29:05 PM CST
Excellent ! Just what I wanted - and easy to use.
|
|
said this on 30 Nov 2006 2:40:28 AM CST
My goodness, if what all the comments
say are true, the author must be a heck of a writer. He could be a new Dan Brown if he switches to fiction writing. So, to give due credit, congrats to the author. |
|
said this on 11 Dec 2006 8:27:17 PM CST
Nice one. That puts a solid foothold in my slippery css learning curve.
|
|
said this on 07 Jan 2007 7:29:20 PM CST
Re: comment #26
Use href="#" instead of href="javascript:?" |
|
said this on 10 Jan 2007 2:53:46 PM CST
Yes, very good work. I'd agree with others that state that it's a simple, straightforward and cross-platform menu, plus - it's described in a way that's easy to dissect and understand.
|
|
said this on 10 Jan 2007 3:04:57 PM CST
Well written, clean and elegang - thanks!
|
|
said this on 12 Jan 2007 9:16:37 AM CST
How do I keep the menu open on the current page within a section?
Hope someone can help... Cheers, Great tut! |
|
said this on 18 Jan 2007 11:07:23 AM CST
Great Work. It really helped me out!
|
|
said this on 23 Jan 2007 2:56:31 AM CST
Excellent. It is exactly the answer for my problem and it is very simple to understand. Thank you.
|
|
said this on 26 Jan 2007 7:09:29 AM CST
Very nice.
Its very simple to make and learn. Thank you very much Saqib |
|
said this on 14 Feb 2007 1:49:55 PM CST
Is there a way to save the menus current state? Can anyone help with this please. If I refresh the menu it doesn't stay where I last clicked...
Thanks |
|
said this on 16 Mar 2007 12:24:51 PM CST
thanks. it helped me out!! I am looking for tabbed menu similar to this, any help?
|
|
said this on 29 Mar 2007 4:41:45 PM CST
Thanks! This works really great. I used post #19 suggestion. Only problem is in Firefox it does not go as a list & is all over the place. Any way to solve this?
|
|
said this on 02 Apr 2007 9:46:53 PM CST
Where can I download the two image required for this tutorial, menudiv1bg.gif & submenu.gif?
|
|
said this on 04 Apr 2007 9:35:56 AM CST
Brilliant, just what I was looking for with the mod of Dave's post (#19). My own modification - to make your mouse appear as a HAND when you go over the links you can use this:
a{cursor: hand} in your styles |
|
said this on 20 Apr 2007 4:15:31 PM CST
this is far the easiest and most explanatory tutorial for us non web savy beginners, thank you for this and i hope there will be more tutorials on this.
|
|
said this on 20 Apr 2007 10:52:37 PM CST
Hi,
thanks for very simple, nice article. is there any options when the sub menus are active, the main menu should be expanded automatically? Thanks. |
|
said this on 23 Apr 2007 12:31:09 AM CST
Well, it's a good code and all, but I find one problem in it: If you copy and paste the exact code, then when you click ANYWHERE which horizontally leads to the line, it makes the menu drop down. It's not just clicking the letters themselves, but clicking the whole line of the letters.
|
|
said this on 17 May 2007 8:05:17 AM CST
Thanks a lot... its very nice...
|
|
said this on 17 May 2007 11:00:12 PM CST
What CSS font-family is being used?
|
|
said this on 28 May 2007 2:41:44 PM CST
Thank you, this is amazing and exactly what I have been looking for to add to my site! It is easy to follow and even easier to apply to an already pre-made site. I dont know JavaScript at all, but I was still able to use this. Thanks so much =)
|
|
said this on 05 Jun 2007 11:54:43 PM CST
Great menu: Can anyone tell me how I can make Level 1 items a link themselves? ie. When I add an href or Goto it breaks the drop down functionality attached to it. Cheers and thanks!
|
|
said this on 11 Jun 2007 8:16:37 AM CST
This is the best tutorial I've found. The code is simple, and easy to understand without extra, fussy details that block the true nature of the code. In 28 lines of CLEAN CODE, you've done better than what others couldn't do in more than 40 lines of TRERRIBLE code.
|
|
said this on 12 Jul 2007 11:11:54 AM CST
This is excellent! Anyone know how to make the submenus stay visible after clicking on the main menu links?
|
|
said this on 23 Jul 2007 5:53:59 AM CST
anybody know how to add "memory" so that links stay open when page is changed? I really need this function, but this tutorial is awesome for a basic menu.
|
|
said this on 07 Aug 2007 1:45:21 PM CST
Really super logic and simple too. HElped me a lot in understanding the logic of menu
|
|
said this on 17 Aug 2007 7:34:30 AM CST
Hi what would i need to do to add sub menu's to the sub menu's?
i.e another teir of submenus. e.g heading of "tools" that opens "spanners" that opens sub menu's of "ring spanners" and "open end spanners" etc. |
|
said this on 28 Aug 2007 3:37:52 PM CST
forgive my ignorance, but when i view this in ie, i have the following issue. i have placed text to the right of the menu. when i select a menu item the text stays in place, but it is indented to the right as the menu expands. is there an ie fix for this? any help is appreciated.
|
|
said this on 30 Aug 2007 4:44:56 PM CST
That is the easiest widget of this type I have seen. I would like to persist this state so that if the same menu opens on a different html page, it would remember whether it was open or closed. Would I do that by passing it through a querystring, then checking for the querystring on the page load? Sorry, not so good with javascript. And that's why I'm very thankful for this, Joseph!
|
|
said this on 02 Sep 2007 5:52:26 PM CST
Excellent. And very easy to implement, too !
|