Created
March 28, 2018 10:21
-
-
Save FinalDestiny/2b65bc4944278f301dc63a170d0fe097 to your computer and use it in GitHub Desktop.
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('.nav li ul').addClass('my_et_menu').hide(); | |
jQuery('.nav li a').click(function(){ | |
jQuery(this).parent().find('ul').first().toggle(); | |
jQuery(this).parents('li').last().siblings().find('ul').hide(); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment