Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

JavaScript How to make navigation close in JS when clicking somewhere else?

imbruceter

New Coder
I know this is a frequently asked question but I am not really familiar with web development and this is the only thing I need to get done.

This is how the navigation javascript snippet currently looks like:
JavaScript:
const hamburger = document.querySelector('.hamburger');
const navItem = document.querySelector('.nav__items');

hamburger.addEventListener('click', () => {
    hamburger.classList.toggle('active');
    navItem.classList.toggle('active');
})

And this is how what I have tried to make it work (doesn't work):
JavaScript:
document.addEventListener = ('click', () => {
    if(hamburger.target.querySelector !== ".hamburger" &&
    navItem.target.querySelector !== ".hamburger") {
        hamburger.classList.remove('active');
        navItem.classList.remove('active');
    }
})

Please, if you can help me with this, I'd be really appreciated!
Have a great day :)
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom