Back To Top
/**************** Simple Script ****************/
$('.footer-container-wrapper').after('');
$("#back-to-top").hide();
$(function () {
$(window).scroll(function(){
if ($(window).scrollTop()>100){
$("#back-to-top").fadeIn(500);
}
else
{
$("#back-to-top").fadeOut(500);
}
});
//back to top
$("#back-to-top").click(function(){
$('body,html').animate({scrollTop:0},500);
return false;
});
});
Comments
Post a Comment