Demo - https://jsfiddle.net/jhhpLapv/1/
// Main Script For Ciel Viole
$(document).ready(function() {
$('.client-link').click(function() {
$('.navbar').slideToggle("fast");
});
});
When triggering the hamburger menu, I want the menu links to fadein and subsequently fadeout when the menu is closed. I am very new to this and about as far as I have gotten. How can I listen to the event to trigger the fade in the first time the menu is clicked, and fade out the second time it is clicked?