Ask Your Question
2

What can I do to my JavaScript code so that "treeview-menu menu-open" is hidden when I click on any part of the body?

asked 2022-05-28 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-04-16 12:00:00 +0000

woof gravatar image

One way to do this is by adding an event listener to the body that listens for a click event, and then removes the "menu-open" class from any elements with the "treeview-menu" class.

Here's an example of how this can be done:

document.body.addEventListener('click', function() {
  var menuOpen = document.querySelectorAll('.treeview-menu.menu-open');
  menuOpen.forEach(function(menu) {
    menu.classList.remove('menu-open');
  });
});

This code adds a click event listener to the body and uses the querySelectorAll method to find all elements that have the "treeview-menu" and "menu-open" classes. Then, it removes the "menu-open" class from each element found.

By doing this, any time the body is clicked, any open menus will be closed.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-05-28 11:00:00 +0000

Seen: 10 times

Last updated: Apr 16 '21