JavaScript – DOM document.embeds Property
The document.embeds property returns a collection of all <embed> elements in the document.
The document.embeds property returns a collection of all <embed> elements in the document.
The document.forms property returns a collection of all <form> elements in a document.
The document.hasFocus() method returns “true” if the document, or any element in the document, has focus. Otherwise it returns “false”.
The document.head property returns the <head> element of the document.
The document.images property returns a collection of all <img> elements in a document.
The document.importNode() method imports a node from another document, and with the second parameter set to true, will also import child nodes.
The document.lastModified property returns the date and time the document was last modified.
The document.links property returns a collection of all links (<a> and <area> elements) in the document.
The document.normalize() method removes empty text nodes, and joins adjacent text nodes.
The document.readyState property returns the loading status of the current document.
The document.referrer property returns the URL of the document that loaded the current document.
The document.removeEventListener() method removes an event handler from a document.
The document.scripts property returns a collection of all <script> elements in the document.
The document.title property sets or returns the title of the document.
The document.URL property returns the full URL of the document.
The document.write() method writes directly to an open HTML document.
The document.writeln() method writes directly to an open HTML document, with the addition of writing a newline character after each statement.