Returns the scrolling element for the body. Edge uses document.documentElement while most others use document.body.

Since
  • 1.0.0
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;

Requires