Hey guys I'm trying to build a website which includes a feature that toggles a side bar when the hamburger icon is clicked yet it doesn't seem to work. all my CSS tags linked to the JavaScript are correct. I just want you guys to look at my JavaScript code if it is right.
$(document).ready(function(){
$('.menu-btn').click(function(){
$('.navbar .menu').toggleClass('active');
});
}); ```