home ~ socials ~ projects ~ rss

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
end of line
Share link:
https://www.alanwsmith.com/en/26/ke/zl/lo/?get-the-root-html-element