Element.textContent | A DOMString representing the text content of the node and its descendants. |
Element.innerText | A DOMString representing the rendered text content of an element. |
Element.innerHTML | A HTML or XML markup contained within the element. |
Element.id | A DOMString representing the id of the element. |
Element.tagName | A String with the name of the tag for the given element. |
Element.classList | A DOMTokenList containing the list of class attributes. |
Element.clientHeight | A Number representing the inner height of the element. |
Element.scrollHeight | A Number representing the scroll view height of an element. |
Element.scrollTop | A Number representing number of pixels the top of the document is scrolled vertically. |
Element.style | A CSSStyleDeclaration representing the declarations of the element's style attribute. |
Input.value | A DOMString that contains the current value of the text entered into the text field. |