$(function() { $(".close").on("click", function(event){ $(this).parent().hide(); }); $(window).scroll(function(){ if ($(this).scrollTop() > 100) { $('.scrollup').fadeIn(); } else { $('.scrollup').fadeOut(); } }); $('.scrollup').click(function(){ $("html, body").animate({ scrollTop: 0 }, 600); return false; }); /*if(location.hash.length) { var container = $(location.hash); var bg = container.css('backgroundColor'); container.animate({ backgroundColor: "#FFF6C5"}, 1000); container.animate({ backgroundColor: bg}, 1000); }*/ });