/*************** * Navigation * ****************/ jQuery(document).ready(function($) { $('.menu-toggle').click(function () { $(this).toggleClass('active'); $('.menu-toggle + ul').slideToggle(); $('ul#primary-menu').slideToggle(); }); $(".site-header li.menu-item-has-children > a").after('') $(".site-header button.dropdown-toggle").click(function() { $(this).toggleClass('active'); $(this).parent().find('ul.sub-menu').first().slideToggle(); }); $('#latest-post .featured-image img').matchHeight(); $('#latest-post .entry-container').matchHeight(); $('.blog-archive-wrapper .featured-image img').matchHeight(); $('.blog-archive-wrapper .entry-container').matchHeight(); $(window).scroll(function(){ if ($(this).scrollTop() > 1) { $('.backtotop').css({bottom:"30px"}); } else { $('.backtotop').css({bottom:"-100px"}); } }); $('.backtotop').click(function(){ $('html, body').animate({scrollTop: '0px'}, 100); return false; }); });