HTMLTextAreaElement
Extends: HTMLElement
See: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement
- HTMLTextAreaElement
- new HTMLTextAreaElement(document, nodeName, namespaceURI)
- .value :
string - .placeholder :
string - .readOnly :
boolean - .dataset
- .nodeName :
string - .localName :
string - .tagName :
string - .nodeType :
number - .namespaceURI :
string - .id :
string - .tabIndex :
number - .className :
string - .attributes :
NamedNodeMap - .style :
Style - .clientLeft :
number - .clientTop :
number - .clientWidth :
number - .clientHeight :
number - .height :
string|Number - .width :
string|Number - .offsetParent :
Element - .offsetLeft :
number - .offsetTop :
number - .offsetWidth :
number - .offsetHeight :
number - .scrollLeft :
number - .scrollTop :
number - .scrollWidth :
number - .scrollHeight :
number - .uxpContainer :
UXPContainer - .disabled :
boolean - .innerHTML :
string - .outerHTML :
string - .contentEditable
- .isConnected :
boolean - .parentNode :
Node - .parentElement :
Element - .firstChild :
Node - .lastChild :
Node - .previousSibling :
Node - .nextSibling :
Node - .firstElementChild :
Node - .lastElementChild :
Node - .previousElementSibling :
Node - .nextElementSibling :
Node - .textContent :
string - .childNodes :
NodeList - .children :
HTMLCollection - .ownerDocument
- .scrollIntoView()
- .scrollIntoViewIfNeeded()
- .focus()
- .blur()
- .getAttribute(name)
- .setAttribute(name, value)
- .removeAttribute(name)
- .hasAttribute(name)
- .getAttributeNode(name)
- .setAttributeNode(newAttr)
- .removeAttributeNode(oldAttr)
- .click()
- .getElementsByClassName(name)
- .getElementsByTagName(name)
- .querySelector(selector)
- .querySelectorAll(selector)
- .getBoundingClientRect()
- .insertAdjacentHTML(position, value)
- .insertAdjacentElement(position, node)
- .insertAdjacentText(position, text)
- .hasChildNodes()
- .cloneNode(deep)
- .appendChild(child)
- .insertBefore(child, before)
- .replaceChild(newChild, oldChild)
- .removeChild(child)
- .remove()
- .before(...nodes)
- .after(...nodes)
- .replaceWith(...nodes)
- .contains(node)
- .addEventListener(eventName, callback, [capture])
- .removeEventListener(eventName, callback, [capture])
- .dispatchEvent(event)
new HTMLTextAreaElement(document, nodeName, namespaceURI)
Creates an instance of HTMLTextAreaElement.
| Param | Type |
|---|---|
document | \* |
nodeName | \* |
namespaceURI | \* |
htmlTextAreaElement.value : string
htmlTextAreaElement.placeholder : string
htmlTextAreaElement.readOnly : boolean
htmlTextAreaElement.dataset
Access to all the custom data attributes (data-*) set.
See: https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset
htmlTextAreaElement.nodeName : string
Read only
htmlTextAreaElement.localName : string
Read only
htmlTextAreaElement.tagName : string
Read only
htmlTextAreaElement.nodeType : number
Read only
htmlTextAreaElement.namespaceURI : string
Read only
htmlTextAreaElement.id : string
htmlTextAreaElement.tabIndex : number
htmlTextAreaElement.className : string
htmlTextAreaElement.attributes : NamedNodeMap
Read only
htmlTextAreaElement.style : Style
Read only
htmlTextAreaElement.clientLeft : number
Read only
htmlTextAreaElement.clientTop : number
Read only
htmlTextAreaElement.clientWidth : number
Read only
htmlTextAreaElement.clientHeight : number
Read only
htmlTextAreaElement.height : string | Number
The height of the element
htmlTextAreaElement.width : string | Number
The width of the element
htmlTextAreaElement.offsetParent : Element
Read only
htmlTextAreaElement.offsetLeft : number
Read only
htmlTextAreaElement.offsetTop : number
Read only
htmlTextAreaElement.offsetWidth : number
Read only
htmlTextAreaElement.offsetHeight : number
Read only
htmlTextAreaElement.scrollLeft : number
htmlTextAreaElement.scrollTop : number
htmlTextAreaElement.scrollWidth : number
Read only
htmlTextAreaElement.scrollHeight : number
Read only
htmlTextAreaElement.uxpContainer : UXPContainer
Read only
htmlTextAreaElement.disabled : boolean
htmlTextAreaElement.innerHTML : string
htmlTextAreaElement.outerHTML : string
htmlTextAreaElement.contentEditable
Read only
htmlTextAreaElement.isConnected : boolean
Read only
htmlTextAreaElement.parentNode : Node
Read only
htmlTextAreaElement.parentElement : Element
Read only
htmlTextAreaElement.firstChild : Node
Read only
htmlTextAreaElement.lastChild : Node
Read only
htmlTextAreaElement.previousSibling : Node
Read only
htmlTextAreaElement.nextSibling : Node
Read only
htmlTextAreaElement.firstElementChild : Node
Read only
htmlTextAreaElement.lastElementChild : Node
Read only
htmlTextAreaElement.previousElementSibling : Node
Read only
htmlTextAreaElement.nextElementSibling : Node
Read only
htmlTextAreaElement.textContent : string
htmlTextAreaElement.childNodes : NodeList
Read only
htmlTextAreaElement.children : HTMLCollection
Read only
htmlTextAreaElement.ownerDocument
Read only
htmlTextAreaElement.scrollIntoView()
htmlTextAreaElement.scrollIntoViewIfNeeded()
htmlTextAreaElement.focus()
htmlTextAreaElement.blur()
htmlTextAreaElement.getAttribute(name)
| Param | Type |
|---|---|
name | string |
htmlTextAreaElement.setAttribute(name, value)
| Param | Type |
|---|---|
name | string |
value | string |
htmlTextAreaElement.removeAttribute(name)
| Param | Type |
|---|---|
name | string |
htmlTextAreaElement.hasAttribute(name)
| Param | Type |
|---|---|
name | string |
htmlTextAreaElement.getAttributeNode(name)
| Param | Type |
|---|---|
name | string |
htmlTextAreaElement.setAttributeNode(newAttr)
| Param | Type |
|---|---|
newAttr | \* |
htmlTextAreaElement.removeAttributeNode(oldAttr)
| Param | Type |
|---|---|
oldAttr | \* |
htmlTextAreaElement.click()
htmlTextAreaElement.getElementsByClassName(name)
| Param | Type |
|---|---|
name | string |
htmlTextAreaElement.getElementsByTagName(name)
| Param | Type |
|---|---|
name | string |
htmlTextAreaElement.querySelector(selector)
| Param | Type |
|---|---|
selector | string |
htmlTextAreaElement.querySelectorAll(selector)
| Param | Type |
|---|---|
selector | string |
htmlTextAreaElement.getBoundingClientRect()
htmlTextAreaElement.insertAdjacentHTML(position, value)
| Param | Type |
|---|---|
position | |
value | string |
htmlTextAreaElement.insertAdjacentElement(position, node)
| Param | Type |
|---|---|
position | \* |
node | \* |
htmlTextAreaElement.insertAdjacentText(position, text)
| Param | Type |
|---|---|
position | \* |
text | \* |
htmlTextAreaElement.hasChildNodes()
htmlTextAreaElement.cloneNode(deep)
| Param | Type |
|---|---|
deep | boolean |
htmlTextAreaElement.appendChild(child)
| Param | Type |
|---|---|
child |
htmlTextAreaElement.insertBefore(child, before)
| Param | Type |
|---|---|
child | |
before |
htmlTextAreaElement.replaceChild(newChild, oldChild)
| Param | Type |
|---|---|
newChild | |
oldChild |
htmlTextAreaElement.removeChild(child)
| Param | Type |
|---|---|
child |
htmlTextAreaElement.remove()
htmlTextAreaElement.before(...nodes)
| Param | Type |
|---|---|
...nodes |
htmlTextAreaElement.after(...nodes)
| Param | Type |
|---|---|
...nodes |
htmlTextAreaElement.replaceWith(...nodes)
| Param | Type |
|---|---|
...nodes |
htmlTextAreaElement.contains(node)
| Param | Type |
|---|---|
node |
htmlTextAreaElement.addEventListener(eventName, callback, [capture])
| Param | Type | Default |
|---|---|---|
eventName | \* | |
callback | \* | |
[capture] | boolean | false |
htmlTextAreaElement.removeEventListener(eventName, callback, [capture])
| Param | Type | Default |
|---|---|---|
eventName | \* | |
callback | \* | |
[capture] | boolean | false |
htmlTextAreaElement.dispatchEvent(event)
| Param | Type |
|---|---|
event | \* |

