- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to find horizontal Scroll Position using jQuery?
To find horizontal scroll position, use the jQuery scrollLeft() method.
Example
You can try to run the following code to find horizontal scroll position using jQuery.
<html> <head> <title>jQuery scrollLeft() method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("div.demo").scrollLeft( 200 ); $("div.demo").mousemove(function () { var left = $("div.demo").scrollLeft(); $("#result").html("left offset: <span>" + left + "</span>."); }); }); </script> <style> div.demo { background:#CCCCCC none repeat scroll 0 0; border:3px solid #666666; margin:5px; padding:5px; position:relative; width:200px; height:100px; overflow:auto; } div.result { margin:10px; width:100px; height:100px; margin:5px; float:left; background-color:blue; } p { margin:10px; padding:5px; border:2px solid #666; width:1000px; height:1000px; } </style> </head> <body> <div class = "demo"><p>Hello</p></div> <span>Scroll horizontal button to see the result:</span> <div class = "result"><span id = "result"></span></div> </body> </html>
- Related Articles
- How to find left position of element in horizontal scroll container using jQuery?
- How to scroll to element in horizontal div using jQuery?
- How to set scroll left position in jQuery?
- How to position horizontal scroll bar at center of DIV?
- How do you check scroll position using selenium?
- How to Scroll to the top of the page using JavaScript/ jQuery?
- How to set textarea scroll bar to bottom as a default using JavaScript/jQuery?
- How to programmatically scroll to a specific position in listView in Android?
- How to set scrolltop position in jQuery?
- How to detect Scroll Up & Scroll down in Android ListView using Kotlin?
- How to create a scroll pane using JavaFX?
- Set a fixed element and scroll another - jQuery
- jQuery position() with Examples
- How to draw on scroll using JavaScript and SVG?
- How to scroll down using Selenium WebDriver with Java?

Advertisements