Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
John Renzema
9,070 Pointsjquery mobile menu malfunctioning
So I have been playing around with creating a navigation menu that will responde to different screen sizes. On the smallest it will be a collaspable menu that uses <i class="fa fa-bars"> as a button.
Everything was working correctly until I modified the javascript to remove the <i> and show the navigation buttons depending on screen size. I am guessing I am making an error some where in my jquery code, but can't seem to find the solution.
The design is to show the <i> on load, and hide the nav bar. The nav bar is hidden if it doesn't have the CSS class of "open".
It will work some times. Then other it shows the <i> when larger than 450 px.
The code is messy currently, and I will work on making it DRY once i get it functioning.
Any help would be appreciated.
$(window).resize( function(){
var win = $(this);
if (win.width() < 450 ) {
$("i").show();
$("ul").removeClass("open");
$("ul").mouseleave( function (){
$("ul").removeClass("open");
$("i").show();
});
$("i").click(function () {
$("ul").toggleClass("open");
$("i").hide();
});
} else {
$("i").hide();
$("ul").toggleClass("open");
}
});
I also rewrote it using a conditional statment instead of else, but it had no affect.
if (win.width() > 450) {
$("i").hide();
$("ul").toggleClass("open");
}
2 Answers
John Renzema
9,070 PointsIncluding the CSS would make this pretty long. The HTML is below.
If its is ok, I can link to the codepen page, it will have all of the code.
<header class="header">
<i class="fa fa-bars hidden"><br>MENU</i>
<ul class="nav">
<li class="logo"><h1>LOGO</h1></li>
<li><a href="$">HOME</a></li>
<li><a href="$">ABOUT</a></li>
<li><a href="$">CONTACT</a></li>
<li><a href="$">BLOG</a></li>
</ul>
</header>
alex mattingley
7,508 PointsYea either codepen or jsbin/jsfiddle
alex mattingley
7,508 Pointsalex mattingley
7,508 PointsIf you could, please post the html code.