document.documentElement
- a link to the root element of the document, usually the <html>
.
document.all
is a collection type containing an enumeration of all child tags in a document. This IE is specific and should be avoided for multi-browser scenarios.
document.documentElement
is DOM Level 2, so these days it should work in almost any large browser.
source share