B-219 Sec-55 Noida, India
+918010221733

Back To Top on Webpage

1.html

<div id=”toTop” style=”display:none”>Back to Top</div>

2. JS
<script language=”javascript”>
jQuery(function() {
    jQuery(window).scroll(function() {
        if(jQuery(this).scrollTop() != 0) {
            jQuery(‘#toTop’).fadeIn();  
        } else {
            jQuery(‘#toTop’).fadeOut();
        }
    });

    jQuery(‘#toTop’).click(function() {
        jQuery(‘body,html’).animate({scrollTop:0},800);
    });  
});
</script> 

(Visited 72 times, 1 visits today)

Leave a reply

You must be logged in to post a comment.