The html.HTMLFormElement
interface represents a web.<form>
in the DOM; it allows access to and in some cases modification
aspects of the form, as well as access to its component elements.
The `html.HTMLFormElement` interface represents a `web.<form>` in the DOM; it allows access to and in some cases modification aspects of the form, as well as access to its component elements.
(accept-charset this)
Property.
The HTMLFormElement.acceptCharset property represents a list the supported character encodings for the given FORM element. list can be comma- or space-separated.
var string = form.acceptCharset; form.acceptCharset = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/acceptCharset
Property. The HTMLFormElement.acceptCharset property represents a list the supported character encodings for the given FORM element. list can be comma- or space-separated. `var string = form.acceptCharset; form.acceptCharset = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/acceptCharset`
(action this)
Property.
The HTMLFormElement.action property represents the action of
web.<form>
element.
var string = form.action; form.action = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/action
Property. The HTMLFormElement.action property represents the action of `web.<form>` element. `var string = form.action; form.action = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/action`
(elements this)
Property.
The html.HTMLFormElement
property elements returns an html.HTMLFormControlsCollection
all the form controls contained in the web.<form>
element.
nodeList = HTMLFormElement.elements
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/elements
Property. The `html.HTMLFormElement` property elements returns an `html.HTMLFormControlsCollection` all the form controls contained in the `web.<form>` element. `nodeList = HTMLFormElement.elements` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/elements`
(encoding this)
Property.
The HTMLFormElement.encoding property is an alternative name
the web.enctype
element on the DOM html.HTMLFormElement
object.
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/encoding
Property. The HTMLFormElement.encoding property is an alternative name the `web.enctype` element on the DOM `html.HTMLFormElement` object. See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/encoding`
(enctype this)
Property.
The HTMLFormElement.enctype property is the MIME type of content is used to submit the form to the server. Possible values are:
var string = form.enctype; form.enctype = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/enctype
Property. The HTMLFormElement.enctype property is the MIME type of content is used to submit the form to the server. Possible values are: `var string = form.enctype; form.enctype = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/enctype`
(length this)
Property.
The HTMLFormElement.length read-only property returns the number
controls in the web.<form>
element.
numControls = form.length;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/length
Property. The HTMLFormElement.length read-only property returns the number controls in the `web.<form>` element. `numControls = form.length;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/length`
(method this)
Property.
The HTMLFormElement.method property represents the HTTP method
to submit the web.<form>
.
var string = form.method; form.method = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/method
Property. The HTMLFormElement.method property represents the HTTP method to submit the `web.<form>`. `var string = form.method; form.method = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/method`
(name this)
Property.
The HTMLFormElement.name property represents the name of the
web.<form>
element as a string.
var string = form.name; form.name = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/name
Property. The HTMLFormElement.name property represents the name of the `web.<form>` element as a string. `var string = form.name; form.name = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/name`
(report-validity this)
Method.
The HTMLFormElement.reportValidity() method returns true if the child controls satisfy their validation constraints. When false returned, cancelable invalid events are fired for each invalid and validation problems are reported to the user.
HTMLFormElement.reportValidity()
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/reportValidity
Method. The HTMLFormElement.reportValidity() method returns true if the child controls satisfy their validation constraints. When false returned, cancelable invalid events are fired for each invalid and validation problems are reported to the user. `HTMLFormElement.reportValidity()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/reportValidity`
(reset this)
Method.
The HTMLFormElement.reset() method restores a form element's values. This method does the same thing as clicking the form's button.
HTMLFormElement.reset()
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/reset
Method. The HTMLFormElement.reset() method restores a form element's values. This method does the same thing as clicking the form's button. `HTMLFormElement.reset()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/reset`
(set-accept-charset! this val)
Property.
The HTMLFormElement.acceptCharset property represents a list the supported character encodings for the given FORM element. list can be comma- or space-separated.
var string = form.acceptCharset; form.acceptCharset = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/acceptCharset
Property. The HTMLFormElement.acceptCharset property represents a list the supported character encodings for the given FORM element. list can be comma- or space-separated. `var string = form.acceptCharset; form.acceptCharset = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/acceptCharset`
(set-action! this val)
Property.
The HTMLFormElement.action property represents the action of
web.<form>
element.
var string = form.action; form.action = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/action
Property. The HTMLFormElement.action property represents the action of `web.<form>` element. `var string = form.action; form.action = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/action`
(set-elements! this val)
Property.
The html.HTMLFormElement
property elements returns an html.HTMLFormControlsCollection
all the form controls contained in the web.<form>
element.
nodeList = HTMLFormElement.elements
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/elements
Property. The `html.HTMLFormElement` property elements returns an `html.HTMLFormControlsCollection` all the form controls contained in the `web.<form>` element. `nodeList = HTMLFormElement.elements` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/elements`
(set-encoding! this val)
Property.
The HTMLFormElement.encoding property is an alternative name
the web.enctype
element on the DOM html.HTMLFormElement
object.
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/encoding
Property. The HTMLFormElement.encoding property is an alternative name the `web.enctype` element on the DOM `html.HTMLFormElement` object. See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/encoding`
(set-enctype! this val)
Property.
The HTMLFormElement.enctype property is the MIME type of content is used to submit the form to the server. Possible values are:
var string = form.enctype; form.enctype = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/enctype
Property. The HTMLFormElement.enctype property is the MIME type of content is used to submit the form to the server. Possible values are: `var string = form.enctype; form.enctype = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/enctype`
(set-method! this val)
Property.
The HTMLFormElement.method property represents the HTTP method
to submit the web.<form>
.
var string = form.method; form.method = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/method
Property. The HTMLFormElement.method property represents the HTTP method to submit the `web.<form>`. `var string = form.method; form.method = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/method`
(set-name! this val)
Property.
The HTMLFormElement.name property represents the name of the
web.<form>
element as a string.
var string = form.name; form.name = string;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/name
Property. The HTMLFormElement.name property represents the name of the `web.<form>` element as a string. `var string = form.name; form.name = string;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/name`
(set-target! this val)
Property.
The target property of the html.HTMLFormElement
interface represents
target of the form's action (i.e., the frame in which to render
output).
string = HTMLFormElement.target HTMLFormElement.target = string
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/target
Property. The target property of the `html.HTMLFormElement` interface represents target of the form's action (i.e., the frame in which to render output). `string = HTMLFormElement.target HTMLFormElement.target = string` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/target`
(submit this)
Method.
The HTMLFormElement.submit() method submits a given web.<form>
.
HTMLFormElement.submit()
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit
Method. The HTMLFormElement.submit() method submits a given `web.<form>`. `HTMLFormElement.submit()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit`
(target this)
Property.
The target property of the html.HTMLFormElement
interface represents
target of the form's action (i.e., the frame in which to render
output).
string = HTMLFormElement.target HTMLFormElement.target = string
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/target
Property. The target property of the `html.HTMLFormElement` interface represents target of the form's action (i.e., the frame in which to render output). `string = HTMLFormElement.target HTMLFormElement.target = string` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/target`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close