In Tips, Tutorials Oct 7, 2008172
jQuery & CSS Example – Dropdown Menu
Dropdown menus and menu bars have been heavily used since the early days of graphical user interfaces. Their use has become ubiquitous, and even expected, in desktop applications, and the web has quickly followed suit. This article is intended to describe an extremely basic, yet extremely powerful, technique for adding dropdown menus in your application user interface or website design.
The Finished Product
Getting Started
To begin, we need to define our basic menu hierarchy. In order to maintain a structured and semantic approach to this, we will use nothing more than unordered lists of standard links. We’ll use the following code as an example:
<ul id="cssdropdown">
<li class="headlink">
<a href="mine.html?search_engines">Search Engines</a>
<ul>
<li><a href="http://google.com/">Google</a></li>
<li><a href="http://yahoo.com/">Yahoo</a></li>
<li><a href="http://live.com/">Live Search</a></li>
</ul>
</li>
<li class="headlink">
<a href="mine.html?shopping">Shopping</a>
<ul>
<li><a href="http://amazon.com/">Amazon</a></li>
<li><a href="http://ebay.com/">eBay</a></li>
<li><a href="http://craigslist.com/">CraigsList</a></li>
</ul>
</li>
</ul>
You should see something like this:

Creating Dropdown Lists
With our semantic HTML and link structure written out, we can proceed to apply some basic hover techniques that are included in CSS. The :hover pseudo-class is invoked when the mouse is placed over the list item.
We can use CSS to hide the child unordered lists by default, and show them with the :hover pseudo-class, like so:
li.headlink ul { display: none; }
li.headlink:hover ul { display: block; }
It is best to take this opportunity to apply some basic styling to the list, such as floating the parent unordered lists in a row, and specifying the width of the unordered list to ensure that no shifting occurs when the elements are hidden or shown. This should look something like this:

The Issue with Internet Explorer
Unfortunately, while the :hover pseudo-class may be elegant, it does not work in Internet Explorer. At this point, a short bit of JavaScript is required to provide a clean fix. All we need to do is select all unordered lists that are within a list item that has the class .headlink and add onmouseover and onmouseout events to them. This can be done in twelve simple lines of code:
window.onload = function()
{
var lis = document.getElementsByTagName('li');
for(i = 0; i < lis.length; i++)
{
var li = lis[i];
if (li.className == 'headlink')
{
li.onmouseover = function() { this.getElementsByTagName('ul').item(0).style.display = 'block'; }
li.onmouseout = function() { this.getElementsByTagName('ul').item(0).style.display = 'none'; }
}
}
}
Those using jQuery are privileged to an even easier solution:
$(document).ready(function(){
$('li.headlink').hover(
function() { $('ul', this).css('display', 'block'); },
function() { $('ul', this).css('display', 'none'); });
});
Putting It All Together
The dropdown menu is now functional in the major browsers, and is ready to be styled, cleaned up, and shipped.
It is advantageous to start by applying a basic style that's a little more appealing than the standard lists. This allows us to visualize how this will fit into our application or design.

Adding Some Flare
With a few extra lines of CSS, the menu is styled and ready to fit into our site.
Wrapping Up
One important aspect of writing a generic dropdown list is to segregate the CSS and JavaScript to ensure that there are no conflicts. The easiest way to do this is to add the #cssdropdown selector in front of every element.
Finally, we check to see if the #cssdropdown div can be moved around freely. This ensures that dropdown menu we have created will flow nicely when integrated with our existing site design or application user interface.
The full code and example remains both basic and concise to exemplify the simplicity of the underlying technique for using dropdown menus on your website. Enjoy!
Tutorial kindly written by Nathan Wong


172 Comments
Oct 7, 2008
This one’s going in the bookmarks. I was looking for a clear explanation of this. Some tutorials I’ve seen have lines and lines of unnecessary markup. Thanks for keeping this simple.
Oct 7, 2008
Awesome tutorial and example. Drop downs consume a ton of hair-pulling time for me – I appreciate the help!!
Oct 8, 2008
Very nice blog http://designreviver.com/
Oct 8, 2008
Nice tut and inspirational outcome!
I needed detailed tutorial like this – so thanks, appreciated!
Oct 8, 2008
I’m glad you guys are making use of the tutorial. I appreciate the kind words. Keep an eye out over this coming week for a handful of jQuery/CSS tutorials on various common UI elements!
Oct 9, 2008
Wow, cool tutorial. I’ll bookmark this. Thx a lot
Oct 9, 2008
Thangs …Bro
Oct 10, 2008
It’s a good simple system. But if you are looking for more complex stuff, more personizable options, compatibilty with flash z-index etc… jdmenu is the best
Oct 10, 2008
What about adding a delay to the mouse out event? That way if you accidentally move the mouse the wrong way, it won’t close the pulldown. This helps when the dropdowns get complicated (with sub-dropdowns, etc). Do you have an easy way of doing this? Or perhaps adding a slower animation to the pulling down of the menu, that would help to. I realize your purpose of making it simple, and that’s awesome. This is one the simplest and best described tuts on this I’ve seen.
Oct 10, 2008
Great article! Very useful.
Oct 11, 2008
very nice. I like CSS examples and am also inclined towards jQuery as well.
Oct 11, 2008
@Tim: I second that!
Oct 11, 2008
It really is a nice example, showing in simple but still with some details about setting up a nice one level CSS drop-down menu. Addition of jQuery also enhances its usability.
Thanks for the effort.
Oct 11, 2008
Is it possible to create a multi column div that drops down from each category like johnlewis.com?
Oct 13, 2008
Very good tutorial. Nice and simple.
Oct 14, 2008
Hey,
Great Job……
Nice tutorial
Oct 14, 2008
Kim: Yeah, you could use a div instead of an unordered list for the dropdown part and you should be able to float within it without too much trouble. It would take some changes, but overall wouldn’t be too hard. Post a comment up if you try and can’t get it working.
Oct 15, 2008
hi. this really helped me out a lot. i am happy.
Oct 15, 2008
Nicely done. Minor nitpick: we should add visual “flair,” unless the menu is intended to light on fire, in which case “flare” would work
Oct 17, 2008
Nice work I am going to use this. thanks
Oct 17, 2008
Now, is this just me?
I can view this page fine in IE, but in FireFox I can see the comments, but not the article itself.
Oct 17, 2008
Nathan, I love the tutorial and find it working well with Safari and Firefox. I am having a bit of trouble with Internet Explorer. When using the javascript, it bumps the text nested in a div out of its way. In FF and Safari the dropdowns show up over the text. Any thoughts? I am using it at http://www.aviationutah.com.
Thanks,
Cameron Peterson
Oct 19, 2008
Thank you so much for such a clear and concise tutorial.
Oct 22, 2008
Cam: What version of IE? I only have access to IE7 at the moment and it’s looking fine for me. Or have you fixed it yourself? Thanks for the kind words.
Oct 27, 2008
This is Great Creating Dropdown Lists will come in handy, when we create our favorite Links Page!
Thanks
BOB
Oct 28, 2008
Hey, first off this is a really good example of a drop down. Very simple, very solid and very easy to alter.
But I’m having an issue with the popup sometimes showing behind content on the page. Is there any way of changing the z-index so it’s always in front?
Thanks
Shaun
Oct 28, 2008
Ignore me, it was very simple, in case anyone else has a simular issue. Just add a high number (eg. z-index:10) to the CSS and it will always be in front. If you have flash files don’t forget to set your Flash files to wmode=”transparent”. Everything should work fine and dandy.
Oct 29, 2008
Glad you found a solution, Shaun, and thanks for sharing with the rest of us.
Oct 30, 2008
Really cool…
Keep it up !!
Nov 14, 2008
This is great tutorial, but why to use jquery if you can make exactly the same effect/stuff with pure html and css, which will be accessible all the time, with enabled/disabled JS.
Great tut anyway, helps a lot to understand the basics of jQuery.
Nov 19, 2008
It’s that IE doesn’t support the CSS :hover pseudo-element on anything but anchor tags. The JS is used to make IE work. I know, it’s disappointing we can’t just use CSS, but that’s the hand we’ve been dealt.
Glad you like it!
- Nathan
Nov 20, 2008
Hi Nathan, I have a problom with this. When I dont Hover the menu, the page looks great, but when I hover it, the submenu pushes everything on the page down.. I would like the menu to be ontop of the content of the page.
Am I doing something wrong? Great tutorial!
Dec 3, 2008
I’m sorry but I thought this tut was HORRIBLE! I am new to web design and I don’t know where to paste this information. Is it in the HEAD or BODY section. What name do I save the CSS file? Etc….
Please remember that some in your audience are completely new to java/html/css.
thanks
Dec 7, 2008
This tutorial was very helpful. I’ve used it for my own website as a tree menu.
How could I tweak this coding so that whenever the headlink is clicked, the options below stay open until something else is clicked?
Thank you.
Dec 28, 2008
I’ve been looking for some simple drop down using CSS and jQuery, I’ve just bookmarked yours. Must say, I got a bit worried when I was reading the lines …getElementById…is this a CSS + jQuery tutorial? I soon realized why was it there
Thanks for this tutorial!
Radek
Jan 7, 2009
Got to say Nathan great tut! Cheers for putting it out there!
Jan 16, 2009
Hey – I just found this awesome jQuery Cheat Sheet for the iPhone. I’ve only had it for a day and it’s been really helpful.
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=302090867&mt=8
Looks like there’s also a CSS Cheat Sheet from the same guys.
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=301093674&mt=8
Feb 12, 2009
I unfortunately cannot get this to work on IE 6/7 at all. When you rollover Collections in the navigation, it uses this tutorial drop down in Safari / Firefox beautifully. However, I’ve referenced the javascript in an external file called jquery.dropdown.menu.js. But, no matter which version I use of the javascript code vs. jquery code, I am unable to get it to work. Any suggestions?
Feb 17, 2009
kristoffer,
Add position: absolute to this line
#cssdropdown li.headlink:hover ul { display: block; position:absolute;}
this stops the items to take up space in the document flow.
I haven’t tested thoroughly so maybe it might break something else.
Feb 28, 2009
hi huys, i need some ideas for a dropdown menu with jquery; i have 3 divs that will be the buttons and 3 divs that will contain the submenus(so each of these three divs will contain some links). to be easier we’ll take for this discussion just one div that will be the button and one div that will be the submenus container(this one is placed above the button div). So…i want when the mouse hovers the button div….the submenu div to show-up…and when the mouse leaves the button the submenu div to disappear. ok…i made this using the jquery’s .hover() adding and removing a class that shows and hides the element(visibility:none). but the problem is that i want on page load the submenu div to be hidden (i tried to simulate user interaction but it didn’t work, i don’t know why ’cause i’m very new to jquery
, i don’t know where to place the trigger code).
ok….the big problem is how to make the submenu div not to disappear when the mouse leaves the button area but enters the submenu div area.(the button div and the submenu div are one next to each other)
any help will be appreciated
Mar 19, 2009
First, thanks for the tutorial. I get CSS dropdown navs now, but Im having the same issue as Kristoffer: when the hover state happens the flow of the site is adjusted for the new elements becoming visible.
I dont want this. I want the nav to appear above the content of the site? Maybe use a z-layer, but I dont know how or even if that would work here.
Example:
http://www.hattersworkshop.com/ftp/csc/index.html
I tried making different elements position: absolute, but this was always causing a problem in FF 3 where the nev child elements appear behind the text and only become visible when hovered… very strange.
Thanks to anyone for any working solution they come up with.
Mar 19, 2009
Played with my code some more and got it.
Paul’s comment was right on.
Thanks.
Apr 8, 2009
Thanks for the tutorial. Though I still have problems between the drop down list and the flash player, I’ve worked around it.
Apr 17, 2009
It works fine on my version of Firefox 1.5.0.1 Perhaps you don’t have the latest version. I run an image gallery myself, but I don’t think type of layout would art? work very well for me as I have descriptions for my images and some of the images are quite large. I don’t know, it might be worth experimenting with.
Apr 17, 2009
I love this menu, Nathan. Thanks. Question: Is there any way to increase the space between the navigation item and the menu that drops down from it? My website (in development) is here: http://64.253.36.100/BartolomeiPucciarelli2009/. I would like the drop down to appear below the shaded horizontal bar. (Or do I just have to rework the graphics?) Thanks!
Apr 21, 2009
thanks very nice menu
Apr 24, 2009
mola… me encanta!
May 12, 2009
Thanks! This was a very clear and precise explanation. Continue the good work!
May 13, 2009
great!
i thank you!
May 22, 2009
Looks great. I’ll use this in an upcoming website re-design – the current drop-down code has been added to several times and has become unmanageable. I’ll remember the z-index. Thanks!
May 24, 2009
Superb!!!
May 28, 2009
thank’s to share knowladge,.i think your site very good for knowladge.,
Jun 3, 2009
Thank you … this tutorial has me very helped.
Jun 7, 2009
good post!thank you,i’ll repaint it.
Jun 9, 2009
simple!!, i like it
Jun 18, 2009
Thank you very much for the explanation. It’s easy to do, but, how about if I want another dropdown menu inside the second level?
This example is for 2 levels, somebody could tell the modification to achieve 3 levels??
Thank you very much.
Jun 30, 2009
mr swarm,
the menu displaces everything when the drop-downs trigger, so it is useless to any website that might actually want to look serious.
Jul 3, 2009
Thanks for the post got to learn this in easy way
Jul 7, 2009
Still going strong!
Excellent tutorial and the JQuery bit is super thanks.
Jul 7, 2009
@ other dave..
You can get around this easily with css. Look into ‘z-index’ and the answer is there…
Peace
Jul 28, 2009
Thanks, Dave! You’re a lifesaver. And to the other “dave” – it’s those type of comments that have caused people to stop sharing useful information like this so freely…
Jul 31, 2009
been searching all over Google for a non-complicated way to add reviews and ratings and it looks like this is it.
Aug 12, 2009
This menu do not fix well, as the dropdown push the below content down
Aug 15, 2009
Firefox 3.5.2 BUG, menu jquery
Aug 21, 2009
@bobby,
Like was said here before,..
Replace:
#cssdropdown li.headlink:hover ul { display: block;}
With:
#cssdropdown li.headlink:hover ul { display: block; position:absolute;}
Aug 27, 2009
i say that this is not useful for all browser in web so i use Mozilla extension for this For other browser i use simply css so all browser accept it
then my script is worked but this script is too hard for learning my script check out mozilla css menu
Aug 31, 2009
thats really helpful , thank you
Aug 31, 2009
Great. Hope, took time to add this article with the snapshot on each steps and it worth thousands of people.
Good commitment.
Hats off.
Sep 1, 2009
Thanks For this info….
Sep 23, 2009
Does anyone knows how to make ebay like drop down category button?
Oct 12, 2009
does anyone know how you would go about animating this so the menu reveals slowly and not instant?
Oct 14, 2009
Hi,
I followed your instructions and the drop down works great. Only problem is, it pushes the part of the site that sits below the menu (ie the content section) down whenever a drop down expands. What might I be doing wrong?!! Many thanks for any help you could offer on this. I’m going crazy trying to work it out (CSS is not my strong point)
Oct 14, 2009
Great menu. I integrated it into the wordpress archive dropdown. It works in Ie6, but the content below the menu shows through. I’ve tried setting z-indexs, but it hasn’t solved the problem.
Oct 23, 2009
Thank you so much for this great Drop Menu Menu CSS, it helped alot.
Oct 28, 2009
does anyone know how you would go about animating this so the menu reveals slowly
Nov 8, 2009
This is very nice!! Easy to implement and highly customizable.
@wie yoga:
Uset the jQuery example and change the following bits:
.css(‘display’, ‘block’) to .slideDown(“slow”)
and
.css(‘display’, ‘none’) to .slideUp(“slow”)
Nov 19, 2009
Does anyone happen to know any plugin like this that support menu like this one: http://www.harborchulavista.com/
Thanks in advanced!
Nov 20, 2009
Thanks for the tutorial! .
Can’t make it work with Flash.
Flash is still in front of the menu.
Where do you put the z-index in the css ?
Nov 27, 2009
Thank a lot for this solution!
I also had som problem with
position:absolute;
My problem was that apparently you have to use the strict mode for IE to have your fixed positioned element work properly. So when I inserted:
at the top of my page it worked great!
Hope this can help anyone!
Nov 27, 2009
I saw that my comment did not work. But I found my solution at:
“http://www.daniweb.com/forums/thread150830.html”
Cheers!
Dec 1, 2009
?????????
Dec 1, 2009
not surport chinese!my god!
Dec 5, 2009
It’s exellence code.
Dec 10, 2009
Hi
I have a slide show that I’ve downloaded from your site and which is running perfectly. On top of the slide show I have a drop down menu. Unfortunately it opens behind the images, which makes it impossible to select the links. How to solve this problem?
Thank you
Dec 17, 2009
Thank you … this has me very helped.
Dec 24, 2009
How can a person update a jQuery menu from a central file (like XML for example) if the html “ul” and “li” menu structure must be pasted from page to page? How do you update the menu if you have, for example 50 pages, without having to edit page by page and not being able to use Server Side Includes?
Dec 27, 2009
thx collect it to
ajax.wespai.com
Jan 5, 2010
great realease and thanks for sharing
Jan 9, 2010
got an issue with ie7 and this line
#cssdropdown li.headlink:hover ul { display: block; position:absolute;}
everything works fine but drop down menu is not under parent but moved to right for about 200px, tried many things but can’t figure out how to fix it…any ideas?
Jan 10, 2010
added left:0px to #cssdropdown li.headlink ul
and looks that problem is resolved in ie7
Jan 12, 2010
Hey thanks for the info, was looking for a way to sort a menu that was showing improperly and found it here!
Jan 20, 2010
i’ve seen better jquery menu scripts …
Jan 23, 2010
thanks for resources
Jan 24, 2010
thats really helpful , thank you:)
Feb 1, 2010
Folk ur great !!! … quite simple and effective. You’re the man, 4real, your the man !!!
Feb 6, 2010
Please give us another tutorial that focuses on making this menu a multi-column menu. Thank you!
Feb 10, 2010
Nice menu! Still a shame IE has to have some javascript to function properly.. Hopefully soon we can just use css with the :hover functionality.
To place it over any kind of flash movie you have to publish your flash movie with wmode=transparant in and it will fix any html layers on top of the flash..
cheers
Feb 11, 2010
Nice work…Thanks for sharing..Is there any other article on Menu using JQuery?
Feb 18, 2010
Great stuff. However, I still can’t get the absolute position to work in any browser and the menus are pushing down the content below.
Any help would be appreciated.
Feb 21, 2010
Man, you are “the one”!!!
Mar 17, 2010
Thanks for this! I tried alot of JQuery menu plugins e.g. Superfish , and they were just too fancy for their own good! Your example is perfick!
Mar 24, 2010
Thanks for this script.
I’m having a bit of the same issue that a Meg mentioned back in last year (See: Meg
Apr 17, 2009)… Seems I cannot move the drop down too far away from the top header nav div, or it “breaks” the connection, and the drop down never appears… Maybe the solution is to enlarge the header div. Any one else come across this? Suggestions?
FS
Mar 24, 2010
Also, in IE6 – position: absolute doesn’t seem to work… Still pushing items on the page down…
Mar 24, 2010
Ok. Well, apparently in order to get the design working right in IE6, its necessary to put this in:
Then it recognizes the position:absolute.. BUT you still need a degrading ie6 style sheet to fix some other styling issues…
Mar 24, 2010
oops.. it needs to be in “<!–"
Mar 24, 2010
this:
[if lt IE 8]
Mar 24, 2010
Mar 24, 2010
[if lt IE 8]
script src=”http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE8.js” type=”text/javascript”
[endif]
Mar 30, 2010
nice post – here’s the similar one with the active main button when you mouse hover the sub navigation:
http://www.sebastiansulinski.co.uk/web_design_tutorials/tutorial/57/jquery_dropdown_menu
Apr 15, 2010
Really nice tutorial.
Apr 22, 2010
Paul was correct. There is a NEEDED FIX to this tutorial and code. Without it, the menu is unusable.
Add position: absolute to this line
#cssdropdown li.headlink:hover ul { display: block; position:absolute;}
This stops the items to take up space in the document flow.
PLEASE FIX THIS TUTORIAL DESIGN REVIVER !! Otherwise it’s cool.
May 3, 2010
This is great tutorial, thanks for sharing
May 14, 2010
Great tutorial. I am now following you on Twitter… Hope get this types of stuff in future. Thanks again.
May 23, 2010
thanks simple trick!!
Jun 4, 2010
Nice menu,
This is very good tutorial.
thanks for sharing
Jun 13, 2010
nice tutorial
Jun 19, 2010
You are definitely a skilled writer. You definitely know how to write to keep the audience engaged. Cheers
Jun 23, 2010
thanks Its so useful, good work
thanks
designreviver.com
Jun 23, 2010
Great tutorial – clean code and well explained.
Thanks for sharing!
Jun 25, 2010
Great tut. Looked everywhere for something simple like this.
I would like the menu to fade in, can someone show me how this would be done?
Much thanks.
Jun 26, 2010
i read this tutorial before here but didnt used it today i am reading it again to use it on my site..thanks for keeping this so simple. i always git stuck at css.thanks
Jul 6, 2010
Simple tutorial. Thanks much.
Jul 7, 2010
I loved the article. It is very exciting. Thank you for the information. I will be back.
Jul 27, 2010
It’s usefull for me, thank you very much!
Jul 30, 2010
hi,
its not working in IE6. so what to do
Jul 30, 2010
In order to make the drop down floating, we need to add the z-index very high number. I have used the following css and it works for me. Very clean solution.
$(document).ready(function(){
$(‘li.headlink’).hover(
function() { $(‘ul’, this).css(‘display’, ‘block’); },
function() { $(‘ul’, this).css(‘display’, ‘none’); });
});
BROWSE PROFILE
Most Viewed
Most Recent
Highest Rated
With Videos
Thank you very much for writing the tutorial. Very elegant solution.
li.headlink ul { display: none; }
li.headlink:hover ul {
position: absolute;
display: none;
list-style-type: none;
margin-top: 20px;
padding: 0px;
z-index: 10000;
width:150px;
background-color:#fff;
}
Aug 1, 2010
oh yeah ~ thanks
Aug 6, 2010
Hi,
I have made this a vertical menu and all is ok except IE6 – When hovering over the link, the child li is not appearing? What could this be?
Cheers
Aug 17, 2010
THx for this tutorial.. an hi for all from Bosnia!
Aug 20, 2010
Now i got some idea.
Aug 30, 2010
thank you very much. Hi turkey!
Sep 3, 2010
Thx from Sarajevo!!!
Sep 3, 2010
Very Cool!
Sep 30, 2010
Very Cool! nice css menü
Oct 9, 2010
I’m going to try and use this on my site. Thank you!
Oct 10, 2010
Very usefull and functional in every browser.
Thank you very much
Oct 19, 2010
this is very strong. thank you!
Oct 20, 2010
Sweet list! Thanks for the share, implementing on one of my projects now.
Oct 28, 2010
I am reading your post for a long time and follow you on twitter as well. and must say your site is first point for me to look for helps and ideas on designing.
Oct 30, 2010
really nice jQuery & CSS Tut
thank you.
Oct 31, 2010
quite helpful but unfotunately it didnt help me.whenever menu spreads over the link then it starts to malfunction…please help me…help! help!
Oct 31, 2010
i admire Craig Newark of craiglists because he became a milionaire in such a short time .
Nov 10, 2010
thanks nice css menu
Nov 14, 2010
Very usefull and functional in every browser.
Thank you very much
Nov 14, 2010
really nice jQuery & CSS Tut
thank you.
Nov 19, 2010
nice work,thank’s
Nov 24, 2010
somtimes i also sell stuffs on craigslists because there are many users in it -.;
Nov 26, 2010
How to adopt, how does it look like this method in Joomla!??
Dec 6, 2010
great job…
thank you for sharing..
here the link for another one..
http://www.bijusubhash.com/blog/redbrown-drop-down-menu-using-jquery-and-css
Dec 13, 2010
I reckon the knowledge laid out in your post is really excellent. I even have been engaged on a preliminary study project on this topic and your weblog honestly helped by using a number of issues that I had. I am writing a explore paper for school and even I’m currently following some web publication for review.
Dec 16, 2010
Very cool tutorial, thanks. If you want to see menus, web site trends, galleries etc, visit http://www.1artmedia.com , you have online demo and free download. Bye!
Dec 17, 2010
Very usefull and functional in every browser.
Thank you very much
Dec 31, 2010
I’ve been moonlighting on website production and I have to say this is the best dropdown menu yet!
Jan 1, 2011
This is a very nice tutorial, perfect for my next project!
Jan 6, 2011
This is missing something. The dropdown ul should have absolute positioning to take it out of the flow. This seems to fix the dropdown pushing everything out of its way, and the dropdown disappearing sometimes in IE8.
Jan 20, 2011
great tutorial! keep it up
Jan 21, 2011
Lot of spam comments here from people who obviously didn’t even try to get this example working in IE. It doesn’t.
Mar 15, 2011
Awesome
but not work with new ie and need to set pos value in css
thank you any way
Mar 19, 2011
Thanks you very much! Wonderful and simple menu! I love jQuery..
Apr 1, 2011
thanks for sharing great work
Apr 11, 2011
Cool post, will try this out
Apr 14, 2011
special thanks for your great post
Apr 27, 2011
There is only grievance of Nintendo users is that the Nintendo’s are only capable for playing games.
May 11, 2011
I am so going to try this out on my website. very nice tutorial. Thnx alot.
May 31, 2011
it’s very very good description, learn many jquery & css. thanks, i will come.
Jun 9, 2011
Very usefull
Jul 4, 2011
It’s usefull for me, thanks for sharing
Jul 5, 2011
Thank you for this, it has helped me out no end.
Jul 19, 2011
longtime I was looking for nice script for my site http://www.5starstour.com, now I had thank jquery
Jul 25, 2011
one more great tutorial
thank you
Jul 26, 2011
great tutorial!
Aug 8, 2011
many thanks for yet again another great tutorial
Leave a Comment