$(document).scroll(function(){ var scrollTop = $(document).scrollTop(),bodyHeight = $(window).height(); if(scrollTop > bodyHeight){ $(".toTop").show(); }else{ $(".toTop").hide(); }});