Rendering modes with JavaScript DOM

Standard DOM is extended to provide additional functionality both in a standardised way and proprietary way of each browser (browsere may have their own set of proprietary DOM extensions

Scrolling methods and properties in JavaScript DOM

Scrolling is a proprietary extensions to the DOM which was framed when HTML5 specifications did not exist in this area. The...

The children and childNodes properties in JavaScript DOM

An element’s children property in Document Object Model (DOM) returns a collection of its child elements as an html collection object. The elements in the...

The contains() method in JavaScript DOM

The contains() method returns whether the specified element is a descendant of the current element or not. This is a very convenient method introduced by

Content manipulation with DOM (innerText, innerHTML, outerText, outerHTML)

DOM extensions for content manipulation using markup and text insertion properties are useful for setting and retrieving text, HTML between start and end tags of an element, next...

Tables manipulation with DOM methods and properties

Multiple methods are available for in-depth manipulation of the table structure dynamically, provided a reference to the table element is available. A table can contain a caption...