Get the root html element
March - 2022
Get the root <html>
element with:
const rootElement = document.documentElement
You can use this for things like getting the width of the viewport minus the scrollbars (if there are any)
const documentWidth = document.documentElement.clientWidth