Make Slide-in Menu Top Level Items into Links

Written by Dan Mossop

The Divi theme's Slide-In Menu displays menu links in a vertical bar which is revealed when you click the menu button. When opened, it displays a list of top level (parent) menu items. Normally, clicking on one of these menu items takes you to the linked page. However, If a top menu item has submenu items (children) then clicking on the parent link will instead expand the list of children items. This means clicking on the parent no longer takes you to the linked page. Here's how to fix that.

Making Slide-In Parent Links Clickable with jQuery

The following jQuery code changes the behavior of the Divi slide-in menu such that only the "down arrow" toggle button will open the list of child links. Clicking on the text (or background area) of a parent link, whether it has children or not, will take you to the linked page.

<script>
jQuery(function($){
	setTimeout(
		function(){
			$('#mobile_menu_slide a').click(
				function(e) { 
					if (e.target.nodeName === 'A') {
						e.stopImmediatePropagation(); 
					}
				}
			);
		}, 
		100
	);
});
</script>

You can paste this, for example, into the "Divi > Theme Options > Integration > Add Code to the Head of your Blog" box.

Elevate Divi's Slide-In Menu with jQuery

Unlock the full potential of your Divi slide-in menu by making parent links clickable using jQuery. With this simple tweak, ensure users can navigate directly to parent pages while maintaining easy access to submenu items, refining your site's navigation experience.

About Dan Mossop

Dan is a Scottish-born web developer, now living in Brisbane with his wife and son. He has been sharing tips and helping users with Divi since 2014. He created Divi Booster, the first Divi plugin, and continues to develop it along with 20+ other Divi plugins. Dan has a PhD in Computer Science, a background in web security and likes a lot of stuff, 

8 Comments

  1. hi! it's works well for me but when i'm on a parent page (active link) their child page doesnt show, thje toggle kind of leave ! Do you know how to fix it?

    Reply
    • Hey Marjorie, hopefully I'm understanding correctly what you need… I've just put up a post explaining how to make the slide-in menu open the submenu for the current page. If you're on either the parent page OR the child page, it should open the corresponding submenu. I hope that helps, but let me know if it's not what you need. Thanks!

      Reply
    • Hey Nito, I can see that site has a slide-in menu on mobile, and the top level items in it are clickable links (i.e. clicking on "JÓVENES LECTORES" and "INFANTIL" takes you to the corresponding pages). The instructions in this post should allow you achieve the same linking effect using the Divi slide-in menu. If that's not working for you, are you able to send a link to the site you're working on so that I can take a look? Or if you want to copy some other aspect of the Mr Books site, please let me know which one(s) and I'll try to help out. Cheers!

      Reply
  2. Dan, isn't working in my phone is still "down arrow"

    Reply
    • Hey Spah, if you haven't already, try clearing your phone's browser cache. Note that the code should make it so that text of top level items can be a clickable link, rather than just opening the submenu. In this case, the down arrow will still be visible and can be used to open the submenu. I just tried this out on my test site and it's still working for me with the latest version of Divi. If the cache clearing doesn't work, are you able to send me a link to the site you're working on so that I can take a look for you? Thanks!

      Reply
  3. I kinda love ya for this… Thanks

    Reply
    • Ha ha! You’re welcome, Brian :)

      Reply

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.

We may earn a commission when you visit links on our website.

Latest From Divi Booster

How to Add the Post Status in Divi's Dynamic Content

Divi's Dynamic Content feature is great for enhancing your post/page templates with post-specific information. While Divi includes an option to show information such as the Post Created Date using Dynamic Content, there is no equivalent option for the Post Status....

Fix Divi Text Module "Regular" Font Weight Not Working

Are you encountering an issue where the font weights in Divi's Text Module don't seem to apply as expected? In particular, you might find that when you set the text module's body text font weight to "Regular", your font is actually assigned a weight of 500 instead of...

Make the Divi Gallery Module Swipeable

The Divi Gallery Module comes with a slider mode that lets you display images in a slider with clickable left/right arrows to scroll through the images. For mobile / touchscreen users, you can improve the user experience by allowing your user to swipe to navigate to...

How to Use Divi Dynamic Content in Woo Modules Product Selector

Divi's Dynamic Content is a powerful feature that lets you populate your Divi modules and theme builder templates with data pulled in various sources, such as custom fields. This allows for efficient organization and maintenance of your sites.Unfortunately, Divi's...

Random Divi Posts