Created
May 7, 2020 06:17
-
-
Save Pavracer/cf0e538efce70120b888d644a1ee362c to your computer and use it in GitHub Desktop.
collapse language switcher on the mobile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
jQuery(document).ready(function(){ | |
jQuery(".menu-item-language.menu-item-has-children").addClass('first-level'); | |
jQuery(".menu-item-language .sub-menu li").addClass('second-level'); | |
jQuery('.menu-item-language.menu-item-has-children a[title="EN"]').click(function(event){ | |
event.preventDefault(); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment