Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Pavracer/cf0e538efce70120b888d644a1ee362c to your computer and use it in GitHub Desktop.
Save Pavracer/cf0e538efce70120b888d644a1ee362c to your computer and use it in GitHub Desktop.
collapse language switcher on the mobile
<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