jQuery(document).ready(function($) { /* function openComments() { $(this).toggleClass('active') $('.comment-toggle-content').slideToggle(200) } */ $('.right-side-header__hamburger-menu').click(function(){ $('.site-header ').toggleClass("toggle-menu") $('.site-header .main-navigation').slideToggle() }) $('.site-header .search-icon').click(function(){ $('.site-header .mobo-search').slideToggle() }) $('.site-header .search input').attr('placeholder','Tips, tricks, buying guides & more…') $('body.single .post-footer h2.comment-toggle-title').click(function(){ openComments() }) /* if (window.location.hash.indexOf('comment')) { openComments() $([document.documentElement, document.body]).animate({ scrollTop: $(window.location.hash).offset().top }, 500) } */ $('.post-metas .author.vcard').hover( function() { $(this).find('.author-info').stop(true, true).fadeIn(); }, function() { $(this).find('.author-info').stop(true, true).fadeOut(); } ); })