THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input FileUpload disabled Property

Input FileUpload Object Reference Input FileUpload Object

Example

Disable a FileUpload button:

document.getElementById("myFile").disabled = true;

The result will be:

Try it Yourself »

Definition and Usage

The disabled property sets or returns whether a file upload button should be disabled, or not.

A disabled element is unusable and un-clickable. Disabled elements are usually rendered in gray by default in browsers.

This property reflects the HTML disabled attribute.


Browser Support

Property
disabled Yes Yes Yes Yes Yes

Syntax

Return the disabled property:

fileuploadObject.disabled

Set the disabled property:

fileuploadObject.disabled=true|false

Property Values

Value Description
true|false Specifies whether a file upload button should be disabled or not.
  • true - The file upload button is disabled
  • false - Default. The file upload button is not disabled

Technical Details

Return Value: A Boolean, returns true if the file upload button is disabled, otherwise it returns false

More Examples

Example

Find out if a FileUpload button is disabled or not:

var x = document.getElementById("myFile").disabled;

The result of x will be:

true
Try it Yourself »

Example

Disable and undisable a FileUpload button:

function disableBtn() {
    document.getElementById("myFile").disabled = true;
}

function undisableBtn() {
    document.getElementById("myFile").disabled = false;
}
Try it Yourself »

Related Pages

HTML reference: HTML <input> disabled attribute


Input FileUpload Object Reference Input FileUpload Object