How to set scroll to bottom in jquery?

How to set scroll to bottom in jquery?

In this post we will give you information about How to set scroll to bottom in jquery?. Hear we will give you detail about How to set scroll to bottom in jquery?And how to use it also give you demo for it if it is necessary.

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 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>

Hope this code and post will helped you for implement How to set scroll to bottom in jquery?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

5  +  2  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US