The HTMLOutputElement interface provides properties and methods
those inherited from web.dom.HTMLElement
) for manipulating
layout and presentation of <output>
elements.
The HTMLOutputElement interface provides properties and methods those inherited from `web.dom.HTMLElement`) for manipulating layout and presentation of `<output>` elements.
(check-validity this & args)
Method.
Checks the validity of the element and returns a Boolean holding check result.
Method. Checks the validity of the element and returns a Boolean holding check result.
(default-value this)
Property.
A DOMString representing the default value of the element, initially empty string.
Property. A DOMString representing the default value of the element, initially empty string.
(form this)
Property.
An HTMLFormElement indicating the form associated with the control, the form HTML attribute if it is defined.
Property. An HTMLFormElement indicating the form associated with the control, the form HTML attribute if it is defined.
(html-for this)
Property.
A DOMTokenList reflecting the for HTML attribute, containing list of IDs of other elements in the same document that contribute (or otherwise affect) the calculated value.
Property. A DOMTokenList reflecting the for HTML attribute, containing list of IDs of other elements in the same document that contribute (or otherwise affect) the calculated value.
(labels this)
Property.
[Read Only]
The HTMLOutputElement.labels read-only property returns a web.NodeList
the <label>
elements associated with the <output>
element.
var labelElements = output.labels;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement/labels
Property. [Read Only] The HTMLOutputElement.labels read-only property returns a `web.NodeList` the `<label>` elements associated with the `<output>` element. `var labelElements = output.labels;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement/labels`
(name this)
Property.
A DOMString reflecting the name HTML attribute, containing the for the control that is submitted with form data.
Property. A DOMString reflecting the name HTML attribute, containing the for the control that is submitted with form data.
(report-validity this & args)
Method.
This method reports the problems with the constraints on the if any, to the user. If there are problems, fires an invalid at the element, and returns false; if there are no problems, returns true.
Method. This method reports the problems with the constraints on the if any, to the user. If there are problems, fires an invalid at the element, and returns false; if there are no problems, returns true.
(set-custom-validity this & args)
Method.
Sets a custom validity message for the element. If this message not the empty string, then the element is suffering from a custom error, and does not validate.
Method. Sets a custom validity message for the element. If this message not the empty string, then the element is suffering from a custom error, and does not validate.
(set-default-value! this val)
Property.
A DOMString representing the default value of the element, initially empty string.
Property. A DOMString representing the default value of the element, initially empty string.
(set-form! this val)
Property.
An HTMLFormElement indicating the form associated with the control, the form HTML attribute if it is defined.
Property. An HTMLFormElement indicating the form associated with the control, the form HTML attribute if it is defined.
(set-html-for! this val)
Property.
A DOMTokenList reflecting the for HTML attribute, containing list of IDs of other elements in the same document that contribute (or otherwise affect) the calculated value.
Property. A DOMTokenList reflecting the for HTML attribute, containing list of IDs of other elements in the same document that contribute (or otherwise affect) the calculated value.
(set-name! this val)
Property.
A DOMString reflecting the name HTML attribute, containing the for the control that is submitted with form data.
Property. A DOMString reflecting the name HTML attribute, containing the for the control that is submitted with form data.
(set-type! this val)
Property.
The DOMString "output".
Property. The DOMString "output".
(set-validation-message! this val)
Property.
A DOMString representing a localized message that describes the constraints that the control does not satisfy (if any). This the empty string if the control is not a candidate for constraint (willValidate is false), or it satisfies its constraints.
Property. A DOMString representing a localized message that describes the constraints that the control does not satisfy (if any). This the empty string if the control is not a candidate for constraint (willValidate is false), or it satisfies its constraints.
(set-validity! this val)
Property.
A ValidityState representing the validity states that this element in.
Property. A ValidityState representing the validity states that this element in.
(set-value! this val)
Property.
A DOMString representing the value of the contents of the elements. like the Node.textContent property.
Property. A DOMString representing the value of the contents of the elements. like the Node.textContent property.
(set-will-validate! this val)
Property.
A Boolean indicating whether the element is a candidate for constraint
Property. A Boolean indicating whether the element is a candidate for constraint
(type this)
Property.
The DOMString "output".
Property. The DOMString "output".
(validation-message this)
Property.
A DOMString representing a localized message that describes the constraints that the control does not satisfy (if any). This the empty string if the control is not a candidate for constraint (willValidate is false), or it satisfies its constraints.
Property. A DOMString representing a localized message that describes the constraints that the control does not satisfy (if any). This the empty string if the control is not a candidate for constraint (willValidate is false), or it satisfies its constraints.
(validity this)
Property.
A ValidityState representing the validity states that this element in.
Property. A ValidityState representing the validity states that this element in.
(value this)
Property.
A DOMString representing the value of the contents of the elements. like the Node.textContent property.
Property. A DOMString representing the value of the contents of the elements. like the Node.textContent property.
(will-validate this)
Property.
A Boolean indicating whether the element is a candidate for constraint
Property. A Boolean indicating whether the element is a candidate for constraint
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close