Title: Toggle button
Last modified: July 6, 2020

---

# Toggle button

 *  [cjuni](https://wordpress.org/support/users/cjuni/)
 * (@cjuni)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/toggle-button-3/)
 * Hello! I would like the user when accessing the site by mobile phone, could open
   submenu by clicking entire area of the top menu, not just the toggle menu, how
   can I do this?
 * [https://ibb.co/HDq51Td](https://ibb.co/HDq51Td)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [longnguyen](https://wordpress.org/support/users/longnguyen/)
 * (@longnguyen)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/toggle-button-3/#post-13080756)
 * Hi,
 * You can add this code to the file functions.php in the child theme folder or 
   use the plugin Code Snippets to implement.
 *     ```
       add_action( 'wp_footer', function() {
       	?>
       	<script type="text/javascript">
       		jQuery(document).ready(function($) {
       			$('ul.nav-menu > li.menu-item-has-children > a').on('click', function() {
       				$(this).closest('.menu-item').find('.nav-toggle-icon').trigger('click');
       			});
       		});
       	</script>
       	<?php
       } );
       ```
   
 * it will help you open the sub-menu when clicking to the menu item, not only the
   arrow down.
 * Regards.
 *  Thread Starter [cjuni](https://wordpress.org/support/users/cjuni/)
 * (@cjuni)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/toggle-button-3/#post-13091242)
 * Hi,
    When I click it, it also opens all the submenus within the submenu that 
   was clicked. I made a video for you to understand better. [https://youtu.be/9Q06Cem-yO4](https://youtu.be/9Q06Cem-yO4)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Toggle button’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customify/0.4.13/screenshot.png)
 * Customify
 * [Support Threads](https://wordpress.org/support/theme/customify/)
 * [Active Topics](https://wordpress.org/support/theme/customify/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customify/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customify/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [cjuni](https://wordpress.org/support/users/cjuni/)
 * Last activity: [5 years, 9 months ago](https://wordpress.org/support/topic/toggle-button-3/#post-13091242)
 * Status: not resolved