- jQuery - Home
- jQuery - Roadmap
- jQuery - Overview
- jQuery - Basics
- jQuery - Syntax
- jQuery - Selectors
- jQuery - Events
- jQuery - Attributes
- jQuery - AJAX
- jQuery CSS Manipulation
- jQuery - CSS Classes
- jQuery - Dimensions
- jQuery - CSS Properties
- jQuery Traversing
- jQuery - Traversing
- jQuery - Traversing Ancestors
- jQuery - Traversing Descendants
- jQuery References
- jQuery - Selectors
- jQuery - Events
- jQuery - Effects
- jQuery - HTML/CSS
- jQuery - Traversing
- jQuery - Miscellaneous
- jQuery - Properties
- jQuery - Utilities
- jQuery Plugins
- jQuery - Plugins
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
jQuery - scrollLeft( ) Method
Description
The scrollLeft( ) method gets the scroll left offset of the first matched element.
This method works for both visible and hidden elements.
Syntax
Here is the simple syntax to use this method −
selector.scrollLeft( )
Parameters
Here is the description of all the parameters used by this method −
NA
Example
Following is a simple example a simple showing the usage of this method −
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js">
</script>
<script type = "text/javascript" language = "javascript">
$(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>
This will produce following result −
jquery-css.htm
Advertisements