w3resource

jQuery CSS - Get the scroll top and scroll left position of an element

jQuery CSS: Exercise-4 with Solution

Get the scroll top and left position of an element.

Test Data :

<body>
 <p></p>
 </body>

Solution:

HTML Code:

<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>Get the scroll top and left position of an element</title>
  <style>
   p {
    margin-top:20px;
    margin-left: 10px;
    padding: 5px;
    border: 2px solid #666;
  }
  </style>
</head>
<body>
  <p> </p>
</body>
</html>

JavaScript Code :

console.log("Scroll left, top position  of the  Paragraph are:"+$("p").scrollLeft()+',' +$("p").scrollTop());

Live Demo:

See the Pen jquery-css-exercise-4 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Find the widths and heights of various elements.
Next: Access the position of an element.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/jquery-exercises/jquery-css-exercise-4.php