HTMLTextAreaElement

Extends: HTMLElement

See: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement

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
Node

htmlTextAreaElement.insertBefore(child, before)

Param
Type
child
Node
before
Node

htmlTextAreaElement.replaceChild(newChild, oldChild)

Param
Type
newChild
Node
oldChild
Node

htmlTextAreaElement.removeChild(child)

Param
Type
child
Node

htmlTextAreaElement.remove()

htmlTextAreaElement.before(...nodes)

Param
Type
...nodes
Array.<Node>

htmlTextAreaElement.after(...nodes)

Param
Type
...nodes
Array.<Node>

htmlTextAreaElement.replaceWith(...nodes)

Param
Type
...nodes
Array.<Node>

htmlTextAreaElement.contains(node)

Param
Type
node
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
\*