$(function() { var $nav = $('#navigation'), mobileNav = null; $('#nav-trigger').click(function() { if(mobileNav == null) { console.log('Cloned'); mobileNav = $('.nav.primary ul').clone(); $nav.find('.mobile').append(mobileNav); } $nav.addClass('active'); $(this).hide('slow'); }); $('#nav--close a').click(function() { $nav.removeClass('active'); $('#nav-trigger').show('slow'); }); $('.page--content iframe').wrap('
'); $(document).on('click', '.mobile li.dropdown > a', function(e) { e.preventDefault(); $(this).next('.nav--sub').toggle(); }) });