site-aurore/static/js/perso.js

17 lines
330 B
JavaScript
Raw Normal View History

2019-03-05 17:38:45 +01:00
(function($) {
$(window).on('load', function() {
var $menu = $('#nav');
var $menu_simple = $("<ul class=\"simple\"></ul>");
$menu.children("ul").each(function(index) {
$(this).children("li").each(function(index) {
$menu_simple.append($(this).clone());
});
});
$menu.append($menu_simple);
});
})(jQuery);