The web.dom.HTMLFormElement
interface represents a <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 `web.dom.HTMLFormElement` interface represents a `<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
<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 `<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 web.dom.HTMLFormElement
property elements returns an web.dom.HTMLFormControlsCollection
all the form controls contained in the <form>
element.
nodeList = HTMLFormElement.elements
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/elements
Property. The `web.dom.HTMLFormElement` property elements returns an `web.dom.HTMLFormControlsCollection` all the form controls contained in the `<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 enctype
element on the DOM web.dom.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 `enctype` element on the DOM `web.dom.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 <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 `<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 <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 `<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
<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 `<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
<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 `<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 web.dom.HTMLFormElement
property elements returns an web.dom.HTMLFormControlsCollection
all the form controls contained in the <form>
element.
nodeList = HTMLFormElement.elements
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/elements
Property. The `web.dom.HTMLFormElement` property elements returns an `web.dom.HTMLFormControlsCollection` all the form controls contained in the `<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 enctype
element on the DOM web.dom.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 `enctype` element on the DOM `web.dom.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 <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 `<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
<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 `<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 web.dom.HTMLFormElement
interface
the target of the form's action (i.e., the frame in which to
its 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 `web.dom.HTMLFormElement` interface the target of the form's action (i.e., the frame in which to its 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 <form>
.
HTMLFormElement.submit()
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit
Method. The HTMLFormElement.submit() method submits a given `<form>`. `HTMLFormElement.submit()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit`
(target this)
Property.
The target property of the web.dom.HTMLFormElement
interface
the target of the form's action (i.e., the frame in which to
its 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 `web.dom.HTMLFormElement` interface the target of the form's action (i.e., the frame in which to its 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