HTMLProgressElement
Extends: HTMLElement
See: https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement
-
- new HTMLProgressElement(document, nodeName, namespaceURI)
- .max :
number - .value :
number - .position :
number - .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 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
stringhtmlProgressElement.setAttribute(name, value)
Param
Type
name
stringvalue
stringhtmlProgressElement.removeAttribute(name)
Param
Type
name
stringhtmlProgressElement.hasAttribute(name)
Param
Type
name
stringhtmlProgressElement.getAttributeNode(name)
Param
Type
name
stringhtmlProgressElement.setAttributeNode(newAttr)
Param
Type
newAttr
\*htmlProgressElement.removeAttributeNode(oldAttr)
Param
Type
oldAttr
\*htmlProgressElement.click()
htmlProgressElement.getElementsByClassName(name)
Param
Type
name
stringhtmlProgressElement.getElementsByTagName(name)
Param
Type
name
stringhtmlProgressElement.querySelector(selector)
Param
Type
selector
stringhtmlProgressElement.querySelectorAll(selector)
Param
Type
selector
stringhtmlProgressElement.getBoundingClientRect()
htmlProgressElement.insertAdjacentHTML(position, value)
Param
Type
position
value
stringhtmlProgressElement.insertAdjacentElement(position, node)
Param
Type
position
\*node
\*htmlProgressElement.insertAdjacentText(position, text)
Param
Type
position
\*text
\*htmlProgressElement.hasChildNodes()
htmlProgressElement.cloneNode(deep)
Param
Type
deep
booleanhtmlProgressElement.appendChild(child)
Param
Type
child
htmlProgressElement.insertBefore(child, before)
htmlProgressElement.replaceChild(newChild, oldChild)
htmlProgressElement.removeChild(child)
Param
Type
child
htmlProgressElement.remove()
htmlProgressElement.before(...nodes)
Param
Type
...nodes
htmlProgressElement.after(...nodes)
Param
Type
...nodes
htmlProgressElement.replaceWith(...nodes)
Param
Type
...nodes
htmlProgressElement.contains(node)
Param
Type
node
htmlProgressElement.addEventListener(eventName, callback, [capture])
Param
Type
Default
eventName
\*callback
\*[capture]
booleanfalsehtmlProgressElement.removeEventListener(eventName, callback, [capture])
Param
Type
Default
eventName
\*callback
\*[capture]
booleanfalsehtmlProgressElement.dispatchEvent(event)
Param
Type
event
\*