Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /** Make Parent Menu Clickable */
- function make_parent_menu_clickable() {
- ?>
- <script>
- (function($) {
- $(window).on('load', function() {
- var $wrapper = $('.jeg-elementor-kit.jkit-nav-menu');
- $wrapper.find('li.menu-item-has-children > a').each(function() {
- $(this).unbind();
- console.log($wrapper)
- $(this).on('click', function(e) {
- if (($wrapper.hasClass('break-point-tablet') && window.matchMedia('(max-width: 1024px)').matches) || ($wrapper.hasClass('break-point-mobile') && window.matchMedia('(max-width: 768px)').matches)) {
- e.preventDefault()
- const dropdown = jQuery(this).next()
- if (dropdown.hasClass('dropdown-open')) {
- dropdown.removeClass('dropdown-open')
- } else {
- dropdown.addClass('dropdown-open')
- }
- }
- })
- });
- })
- })(jQuery)
- </script>
- <?php
- }
- add_action( 'wp_footer', 'make_parent_menu_clickable' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement