One of the common challenges when designing responsive design for mobile is the navigation menu. If the site has many sections or pages, it gets challenging to squeeze all the items into a small mobile resolution. The navigation most likely ends up running into multiple lines or the buttons stacking on top each other. So I'm going to review some of the design solution and provide a quick tutorial on how to create a mobile navigation with jQuery.
Problem
The screenshots below show the navigation layout issues on mobile. If the navigation has 3 or 4 buttons like Web Designer Wall, then the navigation won't wrap into two lines. But if the navigation contains 6 or more buttons, they will stack on top each other.

Solutions
1) Dropdown
One of the commonly used solution is to convert the navigation into a select dropdown. I'm not a big fan of this approach because the <select> element is not stylable with CSS. Javascript plugins like Chosen enables you to modify the dropdown menu, otherwise you end up with the default system dropdown styles. It also causes inconsistent user experience where the desktop version displays link tags and the mobile version displays as a dropdown menu. If you like this solution, here is a tutorial by CSS-Tricks on how to convert a menu to a dropdown.


2) Display as Block
Another quick fix is set each menu item as block elements so they display vertically. But this approach takes a lot of header space. If the navigation has many buttons, this is a bad idea because the readers have to scroll down through the long list of navigation before reaching the content.



3) Menu Icon
The last solution that I'm going to review is to use a menu icon/button to toggle the navigation. I like this method out of the three because it saves space (very important on mobile) and it gives you full control of styling with CSS. The menu icon can be styled to match with the overall design.




Mobile Navigation with jQuery (view demo)
This tutorial shows you how to create a mobile navigation with jQuery as seen on the sites listed above. jQuery will be used to prepend the menu icon and toggle the navigation. This trick doesn't require any extra/un-semantic HTML tags.
HTML
Below is the sample navigation HTML used in this tutorial:
<nav id="nav-wrap">
<ul id="nav">
<li><a href="#">Button</a></li>
<li><a href="#">Button</a></li>
</ul>
</nav>
jQuery Code
Include a copy of jQuery and the function below in between the <head> tag. The function will prepend the <div id="menu-icon"> in the <nav id="#nav-wrap"> tag. When the #menu-icon element is clicked, it will slide down the navigation.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($){
/* prepend menu icon */
$('#nav-wrap').prepend('<div id="menu-icon">Menu</div>');
/* toggle nav */
$("#menu-icon").on("click", function(){
$("#nav").slideToggle();
$(this).toggleClass("active");
});
});
</script>
It will render the HTML code like this (you need to Inspect Element or view generated source code to see this):
<nav id="nav-wrap">
<div id="menu-icon">Menu</div>
<ul id="nav">
<li><a href="#">Button</a></li>
<li><a href="#">Button</a></li>
</ul>
</nav>
CSS
I'm not going to explain every detail of the CSS code because it is pretty straight forward. Instead, I will talk about the key parts.
The #menu-icon is set to display:none initially. I used media query to change the #menu-icon to display:block if the viewport width is smaller than 600px.

In the media query, I set the navigation to display:none so it is hidden initially on mobile. When the #menu-icon is clicked, it will toggle the navigation as specified in the jQuery function at the above step.
Final Demo
To see the final mobile navigation, view the demo and narrow your browser window or check with your mobile phone.

Update:
Also read this CSS Based Responsive Navigation Menu tutorial.
AWESOME. Took me 5 Minutes to implement the jQuery solution into my WordPress theme ( jQuery is loaded anyway for many other stuff). And makes my responsive site much , much better. Thanks a ton!
very nice work, but did´nt work with opera
I noticed that too, the navigation wouldn’t even show up in the demo, but hey… you would only really notice it on mobile devices unless you resized your window to test it out.
This does look like a great theme.
Great tutorial. Always look for a simple way to do this across different websites.
looks amazing!! great job…
Wow ! Nice article. Thanks …
This is a brilliant post, I’ve been plagued with navigation problems on mobile devices for a while and was using the display block method for a while but now I’ve definitely been converted to this awesome jQuery alternative. Thanks again!
Merci. good paper
Confronted with mobile webdesign the problem is space, diversity of phones and the thinkness of the finger ;).
Grafisk designer plays a very crucial role in designing web graphics or mobile graphics. Awsome work done and it ould really help!
Unfortunately this demo breaks when the ‘mobile device’ doesn’t have JavaScript enabled. We should be doing this more progressively. I’ve created a tutorial on this too -
http://alwaystwisted.com/post.php?s=2012-05-14-create-a-responsive-mobile-first-menu
Just a heads up for anyone having issues. My CMS (Drupal) was using an older version of jQuery (1.5.2) which was reporting errors. I think it was the click code in this demo. I fixed my issue by updating to the following code:
$("#menu-icon").click(function(){
$("#nav").slideToggle();
$(this).toggleClass("active");
});
thanks for sharing, this article details, very useful!
I like the idea of the Dropdown and Menu Icon, too. I’ve also had difficulties with jQuery before and I thought maybe it wasn’t compatible with the theme I’m using. Thanks for sharing this tutorial. Now I know how to do it.
great post.
is it possible to use twice in page?
Anyone has a problem in I.E.?
Many many thanks for great post.
Nice job. Thanks for the tutorial. I will definitely try it out.
Thanks, I just updated my website to support mobile devices. :-)
I think my preferred method would be the menu icon, expanding to show a menu when clicked. So much to consider when designing specifically for mobile, exciting times though!