.scrollLeft()Returns: Integer
Description: Get the current horizontal position of the scroll bar for the first element in the set of matched elements.
version added: 1.2.6.scrollLeft()
- This method does not accept any arguments.
The horizontal scroll position is the same as the number of pixels that are hidden from view to the left of the scrollable area. If the scroll bar is at the very left, or if the element is not scrollable, this number will be 0
.
Note:
.scrollLeft()
, when called directly or animated as a property using.animate()
, will not work if the element it is being applied to is hidden.
Example:
Get the scrollLeft of a paragraph.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|