Skip to content
Advertisement

How to make this drop down menus appear on click rather than on hover?

I was following a tutorial on how to create this nice looking sidebar that expands when hovering and fade in elements but it has a dropdown menu that expands when hovering as well (the desktop version) and I need it to expand only when clicking it.

If you hover over Profile and Notifications menu items they toggle when hovering and I need it to toggle when click.

HTML

JavaScript

I have made a pen with this element so you can see it:

https://codepen.io/henrymendeez/pen/rNjNNdw

Advertisement

Answer

  1. Replace this:
JavaScript

With this:

JavaScript

  1. Add this to the javascript:
JavaScript




This is what we get:

JavaScript
JavaScript
JavaScript

👉 Check it in action on Codepen





If you want the dropdown to close when nav is closed then add this to the script:

JavaScript

👉 Check it in action on Codepen

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement