Categories: jQuery

jQuery scroll to element

Share

Sometimes it is required in our website to move the page scroll to any jQuery/DOM element position for a reason like clicking on anchor move the scroll to div element.

Here’s how you can programmatically scroll to any element on the top of the page. If you’re using jQuery then, you don’t need any plugin.

We select both html and body element because the document scroller can be on either and it is hard to determine which to target.

For modern browsers you can get away with $(document.body).

Suppose, you need to click on anchor id “anchor” to move the page scroll to div id “elementID”.

jQuery scroll to element example:
$("#anchor").click(function() {
$('html, body').animate({
scrollTop: $("#elementID").offset().top
}, 1000);
});

This will scroll the page to #elementID over a period of one second (1,000 milliseconds = 1 second).

Or without animation:

$(window).scrollTop($("#elementID").offset().top);
window.scrollTo(0, $("#elementID").offset().top);

Basically, scrollTop gets the current vertical position of the scroll bar for the first element in the set of matched elements or also set the vertical position of the scroll bar for every matched element.

Read Also: 5 Free jQuery Scroll to top Plugins

You can take this things a little bit further and animate scrolling for all anchors on your page.

Recent Posts

Recover From Google Penalties in 10 Steps in 2024

Facing Google penalties can be a daunting challenge for businesses relying on organic search traffic.…

15 hours ago

What is the Future of Artificial Intelligence?

Technology, undeniably, has made our lives easier. But the advent of artificial intelligence has been…

18 hours ago

Role of guest post services in SEO

Guest post services have become an essential tool for businesses and individuals looking to increase…

1 day ago

Top Programming Trends You Need to Know in 2024

Programming continues to evolve at a rapid pace, with new trends and technologies emerging every…

1 day ago

Why startups need a digital marketing strategy?

Let’s be honest; a startup business hardly has sufficient amount to promote their services and…

2 days ago

How to Find the Best SEO Consultant in Toronto to Boost Your Rankings

Introduction In today's digital age, having a strong online presence is crucial for businesses in…

2 days ago