/* JavaScript Document */ $(document).ready(function() { $('nav.mainMenu a.mobile-menu').on('click',function(){ var currentNavHeight = $('nav').height(); if( currentNavHeight < 44 ){ var newNavHeight = $('nav .menu-main-container ul').height() + 43 + 15; $('nav').animate({'height':newNavHeight+'px'},750); }else{ $('nav').animate({'height':'43px'}, 750, function() { $(this).removeAttr('style'); }); } }); $(window).resize(function(){ if( $(this).width() > 625 ){ $('nav').removeAttr('style'); } }); });