Showing posts with label How to scroll to the particular div using jquery. Show all posts
Showing posts with label How to scroll to the particular div using jquery. Show all posts

Saturday 4 July 2015

Scroll to particular div using jquery


Scroll to particular div using jquery

jQuery("#goto-reviews-form").click(function(){
jQuery('html, body').animate({
        'scrollTop' : jQuery("#tabreviews").position().top
    });
});