Answer the question
In order to leave comments, you need to log in
Why doesn't the hamburger script work?
There is this script:
$(document).ready(function() {
function blueasyMenu() {
var $trigger = $('.hamburger_menu'),
$menu = $('.menu');
$trigger.click(function() {
$menu.slideToggle();
});
};
blueasyMenu();
});
<div class="container header_container">
<div class="logo_container">
<img class="logo" src="images/blueasy_logo.png" alt="Logo"/>
<span class="hamburger_menu">☰</span>
</div>
<nav>
<ul class="menu">
<li><a class="active" href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question