Returns the scrolling element for the body. Edge uses document.documentElement while most others use document.body.
- Since
- 1.0.0
- Source
Returns:
Either document.documentElement
for edge or document.body
for other browsers.
- Type:
- HTMLElement
Example
import { bodyLock } from "@gravityforms/utils";
const scroller = bodyLock.getScroller();
const scroll = scroller.scrollTop;