michael2
9/11/2017 - 12:43 AM

Cloning specific menu items and cloning it to the side bar. This specific code will add the sub menus below a "Services" page

Cloning specific menu items and cloning it to the side bar. This specific code will add the sub menus below a "Services" page

<script>
$(document).ready(function(){  
  $('#menu nav li a[href*="services.html"] ~ ul').clone().appendTo('#outerSidebar');
});  
</script>