$(document).ready(function() { var ww = $(window).innerWidth(); var pc = $("#page_count").offset().top; if (ww < 768) { $("html, body").animate({ scrollTop: pc-230 }, "fast"); $("#page_count").prepend(""); } }); $(function() { $.fn.scrollToTop = function() { $(this).hide().removeAttr("href"); if ($(window).scrollTop() != "0") { $(this).stop().fadeIn(1000); } var scrollDiv = $(this); $(window).scroll(function() { if ($(window).scrollTop() == "0") { $(scrollDiv).fadeOut(1000) } else { $(scrollDiv).fadeIn(1000) } }); $(this).click(function() { $("html, body").animate({ scrollTop: 0 }, "slow") }) } }); $(function() { $(".menushow").scrollToTop(); });