JavaScript – DOM Element nextSibling Property
The Element nextSibling property returns the next node on the same tree level.
The Element nextSibling property returns the next node on the same tree level.
The Element nodeName property returns the name of a node.
The Element nodeType property returns the node type, as a number, of the specified node.
The Element nodeValue property returns the value of a node. If the node is an element node, the nodeValue property will return null.
The Element offsetHeight property returns the viewable height of an element, including padding, border and scrollbar, but not the margin.
The Element offsetLeft property returns the left position relative to the parent.
The Element offsetParent property returns the nearest ancestor that has a position other than static. It return “null” if set to display: none;.
The Element offsetWidth property returns the viewable width of an element, including padding, border and scrollbar, but not the margin.
The Element offsetTop property returns the top position relative to the parent.
The Element outerHTML property sets or returns the HTML element, including attributes, the start tag, and the end tag.
The Element outerText property sets or returns the text content of the specified node.
The Element ownerDocument property returns the owner document of a node, as a Document object.
The Element parentElement property returns the parent element of the specified element.
The JavaScript Element parentNode property returns the parent node of an element or node.
The Element previousSibling property returns the previous node on the same tree level.
The Element previousElementSibling property returns the previous element in the same tree level.
The Element scrollHeight property returns the height of an element including padding, but excluding borders, scrollbars, or margins.
The Element scrollIntoView() method scrolls an element into the visible area of the browser window.
The Element scrollLeft property sets or returns the number of pixels an element’s content is scrolled horizontally.
The Element scrollTop property sets or returns the number of pixels an element’s content is scrolled vertically.