Elements Flashcards
Element.accessKey
Sets or returns the accesskey for an element.
Element.addEventListener()
Attaches an event handler to the specified element.
Element.appendChild()
Adds a new child node, to an element, as the last child node.
Element.attributes
Returns a NamedNodeMap of an element’s attributes.
Element.childNodes
Returns a NodeList of child nodes for an element.
Element.className
Sets or returns the class attribute of an element.
Element.clientHeight
Returns the viewable height of an element.
Element.clientWidth
Returns the viewable width of an element.
Element.cloneNode()
Clones an element.
Element.compareDocumentPosition()
Compares the document position of two elements.
Element.contentEditable
Sets or returns whether the content of an element is editable or not.
Element.dir
Sets or returns the text direction of an element.
Element.firstChild
Returns the first child of an element.
Element.getAttribute()
Returns the specified attribute value of an element node.
Element.getAttributeNode()
Returns the specified attribute node.
Element.getElementsByClassName()
Returns a collection of all child elements with the specified class name.
Element.getElementsByTagName()
Returns a collection of all child elements with the specified tagname.
Element.getFeature()
Returns an object which implements the APIs of a specified feature.
Element.getUserData()
Returns the object associated to a key on an element.
Element.hasAttribute()
Returns true if an element has the specified attribute, otherwise false.
Element.hasAttributes()
Returns true if an element has any attributes, otherwise false.
Element.hasChildNodes()
Returns true if an element has any child nodes, otherwise false.
Element.id
Sets or returns the id of an element.
Element.innerHTML
Sets or returns the content of an element.
Element.insertBefore()
Inserts a new child node before a specified, existing, child node.
Element.isContentEditable
Returns true if the content of an element is editable, otherwise false.
Element.isDefaultNamespace()
Returns true if the content of an element is editable, otherwise false.
Element.isEqualNode()
Checks if two elements are equal.
Element.isSameNode()
Checks if two elements are the same node.
Element.isSupported()
Returns true if a specified feature is supported on the element.
Element.lang
Sets or returns the language code for an element.
Element.lastChild
Returns the last child of an element.
Element.namespaceURI
Returns the namespace URI of an element.
Element.nextSibling
Returns the next node at the same node tree level.
Element.nodeName
Returns the name of an element.
Element.nodeType
Returns the node type of an element.
Element.nodeValue
Sets or returns the value of an element.
Element.normalize()
Joins adjacent text nodes and removes empty text nodes in an element.
Element.offsetHeight
Returns the height of an element.
Element.offsetWidth
Returns the width of an element.
Element.offsetLeft
Returns the horizontal offset position of an element.
Element.offsetParent
Returns the offset container of an element.
Element.offsetTop
Returns the vertical offset position of an element.
Element.ownerDocument
Returns the root element (document object) for an element.
Element.parentNode
Returns the parent node of an element.
Element.previousSibling
Returns the previous element at the same node tree level.
Element.querySelector()
Returns the first child element that matches a specified CSS selector(s) of an element.
Element.removeAttribute()
Removes a specified attribute from an element.
Element.removeAttributeNode()
Removes a specified attribute node, and returns the removed node.
Element.removeChild()
Removes a child node from an element.
Element.replaceChild()
Replaces a child node in an element.
Element.removeEventListener()
Removes an event handler that has been attached with the addEventListener() method.
Element.scrollHeight
Returns the entire height of an element.
Element.scrollLeft
Returns the distance between the left edge of an element and the view.
Element.scrollTop
Returns the distance between the top edge of an element and the view.
Element.scrollWidth
Returns the entire width of an element.
Element.setAttribute()
Sets or changes the specified attribute, to the specified value.
Element.setAttributeNode()
Sets or changes the specified attribute node, to the specified value.
Element.setIdAttribute()
Sets or changes the attribute of the specified id, to the specified value.
Element.setIdAttributeNode()
Sets or changes the attribute node of the specified id, to the specified value.
Element.setUserData()
Associates an object to a key on an element.
Element.style
Sets or returns the style attribute of an element.
Element.tabIndex
Sets or returns the tab order of an element.
Element.tagName
Returns the tag name of an element.
Element.textContent
Sets or returns the textual content of a node and its descendants.
Element.title
Sets or returns the title attribute of an element.
Element.toString()
Converts an element to a string.
Nodelist.item()
Returns the node at the specified index in a NodeList.
Nodelist.length
Returns the number of nodes in a NodeList.
Sets or returns the accesskey for an element.
Element.accessKey
Attaches an event handler to the specified element.
Element.addEventListener()
Adds a new child node, to an element, as the last child node.
Element.appendChild()
Returns a NamedNodeMap of an element’s attributes.
Element.attributes
Returns a NodeList of child nodes for an element.
Element.childNodes
Sets or returns the class attribute of an element.
Element.className
Returns the viewable height of an element.
Element.clientHeight
Returns the viewable width of an element.
Element.clientWidth
Clones an element.
Element.cloneNode()
Compares the document position of two elements.
Element.compareDocumentPosition()
Sets or returns whether the content of an element is editable or not.
Element.contentEditable
Sets or returns the text direction of an element.
Element.dir
Returns the first child of an element.
Element.firstChild
Returns the specified attribute value of an element node.
Element.getAttribute()
Returns the specified attribute node.
Element.getAttributeNode()
Returns a collection of all child elements with the specified class name.
Element.getElementsByClassName()
Returns a collection of all child elements with the specified tagname.
Element.getElementsByTagName()
Returns an object which implements the APIs of a specified feature.
Element.getFeature()
Returns the object associated to a key on an element.
Element.getUserData()
Returns true if an element has the specified attribute, otherwise false.
Element.hasAttribute()
Returns true if an element has any attributes, otherwise false.
Element.hasAttributes()
Returns true if an element has any child nodes, otherwise false.
Element.hasChildNodes()
Sets or returns the id of an element.
Element.id
Sets or returns the content of an element.
Element.innerHTML
Inserts a new child node before a specified, existing, child node.
Element.insertBefore()
Returns true if the content of an element is editable, otherwise false.
Element.isContentEditable
Returns true if the content of an element is editable, otherwise false.
Element.isDefaultNamespace()
Checks if two elements are equal.
Element.isEqualNode()
Checks if two elements are the same node.
Element.isSameNode()
Returns true if a specified feature is supported on the element.
Element.isSupported()
Sets or returns the language code for an element.
Element.lang
Returns the last child of an element.
Element.lastChild
Returns the namespace URI of an element.
Element.namespaceURI
Returns the next node at the same node tree level.
Element.nextSibling
Returns the name of an element.
Element.nodeName
Returns the node type of an element.
Element.nodeType
Sets or returns the value of an element.
Element.nodeValue
Joins adjacent text nodes and removes empty text nodes in an element.
Element.normalize()
Returns the height of an element.
Element.offsetHeight
Returns the width of an element.
Element.offsetWidth
Returns the horizontal offset position of an element.
Element.offsetLeft
Returns the offset container of an element.
Element.offsetParent
Returns the vertical offset position of an element.
Element.offsetTop
Returns the root element (document object) for an element.
Element.ownerDocument
Returns the parent node of an element.
Element.parentNode
Returns the previous element at the same node tree level.
Element.previousSibling
Returns the first child element that matches a specified CSS selector(s) of an element.
Element.querySelector()
Removes a specified attribute from an element.
Element.removeAttribute()
Removes a specified attribute node, and returns the removed node.
Element.removeAttributeNode()
Removes a child node from an element.
Element.removeChild()
Replaces a child node in an element.
Element.replaceChild()
Removes an event handler that has been attached with the addEventListener() method.
Element.removeEventListener()
Returns the entire height of an element.
Element.scrollHeight
Returns the distance between the left edge of an element and the view.
Element.scrollLeft
Returns the distance between the top edge of an element and the view.
Element.scrollTop
Returns the entire width of an element.
Element.scrollWidth
Sets or changes the specified attribute, to the specified value.
Element.setAttribute()
Sets or changes the specified attribute node, to the specified value.
Element.setAttributeNode()
Sets or changes the attribute of the specified id, to the specified value.
Element.setIdAttribute()
Sets or changes the attribute node of the specified id, to the specified value.
Element.setIdAttributeNode()
Associates an object to a key on an element.
Element.setUserData()
Sets or returns the style attribute of an element.
Element.style
Sets or returns the tab order of an element.
Element.tabIndex
Returns the tag name of an element.
Element.tagName
Sets or returns the textual content of a node and its descendants.
Element.textContent
Sets or returns the title attribute of an element.
Element.title
Converts an element to a string.
Element.toString()
Returns the node at the specified index in a NodeList.
Nodelist.item()
Returns the number of nodes in a NodeList.
Nodelist.length