1document.anchors Returns all <a> elements that have a name attribute 1
2document.applets Returns all <applet> elements (Deprecated in HTML5) 1
3document.baseURI Returns the absolute base URI of the document 3
4document.body Returns the <body> element 1
5document.cookie Returns the document's cookie 1
6document.doctype Returns the document's doctype 3
7document.documentElement Returns the <html> element 3
8document.documentMode Returns the mode used by the browser 3
9document.documentURI Returns the URI of the document 3
10document.domain Returns the domain name of the document server 1
11document.embeds Returns all <embed> elements 3
12document.forms Returns all <form> elements 1
13document.head Returns the <head> element 3
14document.images Returns all <img> elements 1
15document.implementation Returns the DOM implementation 3
16document.inputEncoding Returns the document's encoding (character set) 3
17document.lastModified Returns the date and time the document was updated 3
18document.links Returns all <area> and <a> elements that have a href attribute 1
19document.readyState Returns the (loading) status of the document 3
20document.referrer Returns the URI of the referrer (the linking document) 1
21document.scripts Returns all <script> elements 3
22document.strictErrorChecking Returns if error checking is enforced 3
23document.title Returns the <title> element 1
24document.URL Returns the complete URL of the document 1
25