HTML DOM Input FileUpload form Property

Input Fileupload Object : Get the id of the form containing the <input type="file"> element

Definition and Usage

The form property returns a reference to the form containing the file upload button.

This property returns a form object on success.

Note: This property is read only.

Browser Support

Property
form Yes 10.0 Yes Yes Yes

Syntax

fileuploadObject.form

Technical Details

Return Value: A reference to the form element containing the file upload button. If the file upload button is not in a form, null is returned

❮ Input Fileupload Object