HTMLProgressElement

Extends: HTMLElement

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

new HTMLProgressElement(document, nodeName, namespaceURI)

Creates an instance of HTMLProgressElement.

Param
Type
document
\*
nodeName
\*
namespaceURI
\*

htmlProgressElement.max : number

Maximum value for the progress bar

htmlProgressElement.value : number

Value of the progress bar

htmlProgressElement.position : number

Completion value of the progress bar

Read only

htmlProgressElement.dataset

Access to all the custom data attributes (data-*) set.

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

htmlProgressElement.nodeName : string

Read only

htmlProgressElement.localName : string

Read only

htmlProgressElement.tagName : string

Read only

htmlProgressElement.nodeType : number

Read only

htmlProgressElement.namespaceURI : string

Read only

htmlProgressElement.id : string

htmlProgressElement.tabIndex : number

htmlProgressElement.className : string

htmlProgressElement.attributes : NamedNodeMap

Read only

htmlProgressElement.style : Style

Read only

htmlProgressElement.clientLeft : number

Read only

htmlProgressElement.clientTop : number

Read only

htmlProgressElement.clientWidth : number

Read only

htmlProgressElement.clientHeight : number

Read only

htmlProgressElement.height : string | Number

The height of the element

htmlProgressElement.width : string | Number

The width of the element

htmlProgressElement.offsetParent : Element

Read only

htmlProgressElement.offsetLeft : number

Read only

htmlProgressElement.offsetTop : number

Read only

htmlProgressElement.offsetWidth : number

Read only

htmlProgressElement.offsetHeight : number

Read only

htmlProgressElement.scrollLeft : number

htmlProgressElement.scrollTop : number

htmlProgressElement.scrollWidth : number

Read only

htmlProgressElement.scrollHeight : number

Read only

htmlProgressElement.uxpContainer : UXPContainer

Read only

htmlProgressElement.disabled : boolean

htmlProgressElement.innerHTML : string

htmlProgressElement.outerHTML : string

htmlProgressElement.contentEditable

Read only

htmlProgressElement.isConnected : boolean

Read only

htmlProgressElement.parentNode : Node

Read only

htmlProgressElement.parentElement : Element

Read only

htmlProgressElement.firstChild : Node

Read only

htmlProgressElement.lastChild : Node

Read only

htmlProgressElement.previousSibling : Node

Read only

htmlProgressElement.nextSibling : Node

Read only

htmlProgressElement.firstElementChild : Node

Read only

htmlProgressElement.lastElementChild : Node

Read only

htmlProgressElement.previousElementSibling : Node

Read only

htmlProgressElement.nextElementSibling : Node

Read only

htmlProgressElement.textContent : string

htmlProgressElement.childNodes : NodeList

Read only

htmlProgressElement.children : HTMLCollection

Read only

htmlProgressElement.ownerDocument

Read only

htmlProgressElement.scrollIntoView()

htmlProgressElement.scrollIntoViewIfNeeded()

htmlProgressElement.focus()

htmlProgressElement.blur()

htmlProgressElement.getAttribute(name)

Param
Type
name
string

htmlProgressElement.setAttribute(name, value)

Param
Type
name
string
value
string

htmlProgressElement.removeAttribute(name)

Param
Type
name
string

htmlProgressElement.hasAttribute(name)

Param
Type
name
string

htmlProgressElement.getAttributeNode(name)

Param
Type
name
string

htmlProgressElement.setAttributeNode(newAttr)

Param
Type
newAttr
\*

htmlProgressElement.removeAttributeNode(oldAttr)

Param
Type
oldAttr
\*

htmlProgressElement.click()

htmlProgressElement.getElementsByClassName(name)

Param
Type
name
string

htmlProgressElement.getElementsByTagName(name)

Param
Type
name
string

htmlProgressElement.querySelector(selector)

Param
Type
selector
string

htmlProgressElement.querySelectorAll(selector)

Param
Type
selector
string

htmlProgressElement.getBoundingClientRect()

htmlProgressElement.insertAdjacentHTML(position, value)

Param
Type
position
value
string

htmlProgressElement.insertAdjacentElement(position, node)

Param
Type
position
\*
node
\*

htmlProgressElement.insertAdjacentText(position, text)

Param
Type
position
\*
text
\*

htmlProgressElement.hasChildNodes()

htmlProgressElement.cloneNode(deep)

Param
Type
deep
boolean

htmlProgressElement.appendChild(child)

Param
Type
child
Node

htmlProgressElement.insertBefore(child, before)

Param
Type
child
Node
before
Node

htmlProgressElement.replaceChild(newChild, oldChild)

Param
Type
newChild
Node
oldChild
Node

htmlProgressElement.removeChild(child)

Param
Type
child
Node

htmlProgressElement.remove()

htmlProgressElement.before(...nodes)

Param
Type
...nodes
Array.<Node>

htmlProgressElement.after(...nodes)

Param
Type
...nodes
Array.<Node>

htmlProgressElement.replaceWith(...nodes)

Param
Type
...nodes
Array.<Node>

htmlProgressElement.contains(node)

Param
Type
node
Node

htmlProgressElement.addEventListener(eventName, callback, [capture])

Param
Type
Default
eventName
\*
callback
\*
[capture]
boolean
false

htmlProgressElement.removeEventListener(eventName, callback, [capture])

Param
Type
Default
eventName
\*
callback
\*
[capture]
boolean
false

htmlProgressElement.dispatchEvent(event)

Param
Type
event
\*