ItSolutionStuff.com

Automatically Scroll to Bottom of Div JQuery Example

By Hardik Savani • January 30, 2023
PHP HTML jQuery

Sometimes, we need to set scroll bottom as default by using jquery, in bellow example you can see i use scrollHeight for get the total height of scroll class div with scroll, and at last i use animate with scrollTop attribute and set bottom, So Basically when your page will load then automatically scroll as bottom.

Example:

<html lang="en">

<head>

<title>Scroll Down bottom</title>

<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>

</head>

<body>

<div class="scroll-class" style="border: 1px solid black;height: 200px;overflow: scroll;width: 300px;">

<p>

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod

tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,

quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo

consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse

cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non

proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

</p>

</div>

<script type="text/javascript">

var objDiv = $(".scroll-class");

var h = objDiv.get(0).scrollHeight;

objDiv.animate({scrollTop: h});

</script>

</body>

</html>

I hope it can help you...

Tags: jQuery
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

JQuery Remove All Numbers from String Example

Read Now →

How to Download File using JQuery?

Read Now →

How to use Laravel Variable in JQuery?

Read Now →

Laravel JQuery UI Autocomplete Ajax Search Example

Read Now →

How to Remove Last Element from Array in JQuery?

Read Now →

Check and Uncheck All Checkbox using JQuery Example

Read Now →

How to access PHP variables in JQuery?

Read Now →

How to Allow Only One Checkbox Checked at a Time in JQuery?

Read Now →

How to Check Undefined, Empty and Null in JQuery?

Read Now →

How to Convert Line Breaks to br in jQuery ?

Read Now →

How to Check Object is Empty or Not in JQuery?

Read Now →

How to use Google Maps API with JQuery PHP?

Read Now →