Yogesh Chauhan's Blog

How to scroll contents of a an element vertically using JavaScript?

in JavaScript on March 10, 2021

We know that we can use on page links (a tag) with id to navigate user on the same page. But that doesn’t always we need. What if we want to scroll down a bit higher or lower but not to a specific element?

Well, in that case, scrollTop DOM property comes handy.

We can use the scrollTop property to set the number of pixels on any element’s content and it should scroll vertically by that many pixels.

We can also use it to get the number of pixels any element has moved down vertically.

Very handy. Isn’t it?

Simply set the property like this syntax


el.scrollTop = number in pixels

Or get the property like this syntax


el.scrollTop

Things to remember

  • Try not to set the number of pixels in negative. It doesn’t work like margin or padding. JavaScript will convert the negative number to a zero.
  • If you try to scroll any element that is not scrollable, then again JS will set the number to a zero.
  • If you set the scrolling number in pixel greater than the box itself, then it will be set to the maximum box height.

Example: scroll contents using JavaScript

You can make the scrolling smooth just using CSS or a cross-browser solution using jQuery.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
How to pass arguments in SCSS function?SCSSHow to get recent posts in WordPress?WordPressHow to Block IPs and User Agents using code in Drupal or WordPress?DrupalHow to compile and watch Sass using Gulp in WordPress?SCSSHow to get the height and width of an element using JavaScript?JavaScriptCSS backface-visibility PropertyCSSHow to create a multisite network in WordPress?WordPressArray destructuring and Object destructuring in JavaScriptJavaScriptHow to remove a specific item from an array in JavaScript?JavaScriptHow to create a simple slider with CSS and jQuery?CSSHow to create a Star Ratings using CSS?CSSIntroduction to Angular modules Part 3: NgModules vs JavaScript modules and Angular librariesAngular