Advertisement
EduardET

Untitled

Jun 25th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. (function ($) {
  3.     $(document).ready(function () {
  4.         var menuLinks = $('#menu-menu > li > a');
  5.         menuLinks.each(function(){
  6.             $(this).click(function(){
  7.                 menuLinks.parent().removeClass('wpc-et-show-dropdown');
  8.                 $(this).parent().addClass('wpc-et-show-dropdown');
  9.             })
  10.         })
  11.     });
  12. })(jQuery);
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement