Liking cljdoc? Tell your friends :D

html.HTMLInputElement

The HTMLInputElement interface provides special properties and for manipulating the options, layout, and presentation of web.<input>

The HTMLInputElement interface provides special properties and
for manipulating the options, layout, and presentation of `web.<input>`
raw docstring

labelscljs

(labels this)

Property.

The HTMLInputElement.labels read-only property returns a web.NodeList the web.<label> elements associated with the web.<input>

var labelElements = input.labels;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/labels

Property.

The HTMLInputElement.labels read-only property returns a `web.NodeList`
the `web.<label>` elements associated with the `web.<input>`

`var labelElements = input.labels;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/labels`
sourceraw docstring

moz-get-file-name-arraycljs

(moz-get-file-name-array this a-length a-file-names)

Method.

The HTMLInputElement.mozGetFileNameArray() method returns an of the names of the files that were selected by the user on an input element.

inputElement.mozGetFileNameArray(aLength, aFileNames);

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/mozGetFileNameArray

Method.

The HTMLInputElement.mozGetFileNameArray() method returns an
of the names of the files that were selected by the user on an
input element.

`inputElement.mozGetFileNameArray(aLength, aFileNames);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/mozGetFileNameArray`
sourceraw docstring

moz-set-file-name-arraycljs

(moz-set-file-name-array this a-file-names a-length)

Method.

The HTMLInputElement.mozSetFileNameArray() method sets the names the files that selected on an HTML input element.

inputElement.mozSetFileNameArray(aFileNames, aLength);

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/mozSetFileNameArray

Method.

The HTMLInputElement.mozSetFileNameArray() method sets the names
the files that selected on an HTML input element.

`inputElement.mozSetFileNameArray(aFileNames, aLength);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/mozSetFileNameArray`
sourceraw docstring

multiplecljs

(multiple this)

Property.

The HTMLInputElement.multiple property indicates if an input have more than one value. Firefox currently only supports multiple <input type="file">.

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/multiple

Property.

The HTMLInputElement.multiple property indicates if an input
have more than one value. Firefox currently only supports multiple
<input type=\"file\">.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/multiple`
sourceraw docstring

selectcljs

(select this)

Method.

The HTMLInputElement.select() method selects all the text in web.<textarea> element or in an web.<input> element that a text field.

element.select();

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/select

Method.

The HTMLInputElement.select() method selects all the text in
`web.<textarea>` element or in an `web.<input>` element that
a text field.

`element.select();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/select`
sourceraw docstring

set-labels!cljs

(set-labels! this val)

Property.

The HTMLInputElement.labels read-only property returns a web.NodeList the web.<label> elements associated with the web.<input>

var labelElements = input.labels;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/labels

Property.

The HTMLInputElement.labels read-only property returns a `web.NodeList`
the `web.<label>` elements associated with the `web.<input>`

`var labelElements = input.labels;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/labels`
sourceraw docstring

set-multiple!cljs

(set-multiple! this val)

Property.

The HTMLInputElement.multiple property indicates if an input have more than one value. Firefox currently only supports multiple <input type="file">.

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/multiple

Property.

The HTMLInputElement.multiple property indicates if an input
have more than one value. Firefox currently only supports multiple
<input type=\"file\">.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/multiple`
sourceraw docstring

set-range-textcljs

(set-range-text this & args)

Method.

The HTMLInputElement.setRangeText() method replaces a range of in an web.<input> or web.<textarea> element with a new string.

element.setRangeText(replacement); element.setRangeText(replacement, start, end [, selectMode]);

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setRangeText

Method.

The HTMLInputElement.setRangeText() method replaces a range of
in an `web.<input>` or `web.<textarea>` element with a new string.

`element.setRangeText(replacement);
element.setRangeText(replacement, start, end [, selectMode]);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setRangeText`
sourceraw docstring

set-selection-rangecljs

(set-selection-range this & args)

Method.

The HTMLInputElement.setSelectionRange() method sets the start end positions of the current text selection in an web.<input> web.<textarea> element.

element.setSelectionRange(selectionStart, selectionEnd [, selectionDirection]);

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setSelectionRange

Method.

The HTMLInputElement.setSelectionRange() method sets the start
end positions of the current text selection in an `web.<input>`
`web.<textarea>` element.

`element.setSelectionRange(selectionStart, selectionEnd [, selectionDirection]);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setSelectionRange`
sourceraw docstring

set-webkit-entries!cljs

(set-webkit-entries! this val)

Property.

The read-only webkitEntries property of the html.HTMLInputElement contains an array of file system entries (as objects based on representing files and/or directories selected by the user using web.<input> element of type file, but only if that selection made using drag-and-drop: selecting a file in the dialog will the property empty (bug

var entries = HTMLInputElement.webkitEntries;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitEntries

Property.

The read-only webkitEntries property of the `html.HTMLInputElement`
contains an array of file system entries (as objects based on
representing files and/or directories selected by the user using
`web.<input>` element of type file, but only if that selection
made using drag-and-drop: selecting a file in the dialog will
the property empty (bug

`var entries = HTMLInputElement.webkitEntries;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitEntries`
sourceraw docstring

set-webkitdirectory!cljs

(set-webkitdirectory! this val)

Property.

The HTMLInputElement.webkitdirectory is a property that reflects webkitdirectory HTML attribute and indicates that the web.<input> should let the user select directories instead of files. When directory is selected, the directory and its entire hierarchy contents are included in the set of selected items. The selected system entries can be obtained using the web.webkitEntries

HTMLInputElement.webkitdirectory = boolValue

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory

Property.

The HTMLInputElement.webkitdirectory is a property that reflects
webkitdirectory HTML attribute and indicates that the `web.<input>`
should let the user select directories instead of files. When
directory is selected, the directory and its entire hierarchy
contents are included in the set of selected items. The selected
system entries can be obtained using the `web.webkitEntries`

`HTMLInputElement.webkitdirectory = boolValue`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory`
sourceraw docstring

webkit-entriescljs

(webkit-entries this)

Property.

The read-only webkitEntries property of the html.HTMLInputElement contains an array of file system entries (as objects based on representing files and/or directories selected by the user using web.<input> element of type file, but only if that selection made using drag-and-drop: selecting a file in the dialog will the property empty (bug

var entries = HTMLInputElement.webkitEntries;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitEntries

Property.

The read-only webkitEntries property of the `html.HTMLInputElement`
contains an array of file system entries (as objects based on
representing files and/or directories selected by the user using
`web.<input>` element of type file, but only if that selection
made using drag-and-drop: selecting a file in the dialog will
the property empty (bug

`var entries = HTMLInputElement.webkitEntries;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitEntries`
sourceraw docstring

webkitdirectorycljs

(webkitdirectory this)

Property.

The HTMLInputElement.webkitdirectory is a property that reflects webkitdirectory HTML attribute and indicates that the web.<input> should let the user select directories instead of files. When directory is selected, the directory and its entire hierarchy contents are included in the set of selected items. The selected system entries can be obtained using the web.webkitEntries

HTMLInputElement.webkitdirectory = boolValue

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory

Property.

The HTMLInputElement.webkitdirectory is a property that reflects
webkitdirectory HTML attribute and indicates that the `web.<input>`
should let the user select directories instead of files. When
directory is selected, the directory and its entire hierarchy
contents are included in the set of selected items. The selected
system entries can be obtained using the `web.webkitEntries`

`HTMLInputElement.webkitdirectory = boolValue`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close