THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input FileUpload form Property

Input Fileupload Object Reference Input Fileupload Object

Example

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

var x = document.getElementById("myFile").form.id;

The result of x will be:

myForm
Try it Yourself »

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 Reference Input Fileupload Object