HTML | DOM Input FileUpload required Property Last Updated : 29 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The Input FileUpload required Property is used to set or return whether a file in the file upload field must be selected/uploaded before submitting a form. This property reflects the HTML required attribute. Syntax: Return the required property:fileuploadObject.requiredSet the required property:fileuploadObject.required=true|false Property Values: true: Return 'true' when the file upload field is required. false: It is the default value. It return 'false' when the file upload field is not required. Return Value: A Boolean value that displays the status of file upload required field. Examples-1: Return FileUpload required Property. HTML <!DOCTYPE html> <html> <head> <title> Input FileUpload required Property </title> <style> h1 { color: green; } </style> </head> <body> <center> <h1> Geeks for Geeks </h1> <form action="/action_page.php"> <input type="file" id="myFile" required> <br> <input type="submit" value="Submit"> </form> <p id="demo"></p> <button onclick="myFunction()"> Try it </button> <script> function myFunction() { var x = document.getElementById( "myFile").required; document.getElementById("demo").innerHTML = x; } </script> </center> </body> </html> Output: Before: After: Examples-2: Set FileUpload required Property HTML <!DOCTYPE html> <html> <head> <title> Input FileUpload required Property </title> <style> h1 { color: green; } </style> </head> <body> <center> <h1> Geeks for Geeks </h1> <form action="/action_page.php"> <input type="file" id="myFile"> <br> <input type="submit" value="Submit"> </form> <p id="demo"></p> <button onclick="myFunction()"> Try it </button> <script> function myFunction() { var x = document.getElementById( "myFile").required = "true"; document.getElementById("demo").innerHTML = x; } </script> </center> </body> </html> Output: Before: After: Supported Browsers: Google Chrome 1+Mozilla Firefox 1+Edge 12+Opera 11+Apple Safari 1+ Comment More infoAdvertise with us Next Article HTML | DOM Input FileUpload required Property V Vijay Sirra Follow Improve Article Tags : Web Technologies HTML HTML-DOM Similar Reads HTML | DOM Input FileUpload value Property The Input FileUpload value Property is used to returns the path or the name of the file selected with the element. This property is used to return the name of the selected file with a fake path in IE, Google Chrome, and Opera, and return the name of the selected file in Firefox and Safari. This prop 1 min read HTML | DOM Input FileUpload type Property The Input FileUpload type Property is used in HTML DOM to return the type of form element the file upload button is. This property will always return "file" for a file upload button. Syntax: fileuploadObject.type Return Value: It returns a string value that represents the type of form element the fi 1 min read HTML | DOM Input FileUpload form Property The Input FileUpload form property in HTML DOM is used to return a reference to the form containing the file upload button. This is a read-only property and returns a form object on success. Syntax: fileuploadObject.form Return Values: It returns a string value which specify the reference of the for 1 min read HTML | DOM Input FileUpload name Property The name property is used to set or return the value of the name attribute of a file upload button. The name attribute is used to identify form data after the submission to the server. Syntax: Return the name property:fileuploadObject.nameSet the name property:fileuploadObject.name=name Property Val 1 min read HTML | DOM Input FileUpload accept Property The DOM Input FileUpload accept Property in HTML DOM is used to set or return the value of the accept attribute of the file upload button. The accept attribute specifies the types of files which are acceptable by that the server. Syntax: Return the accept property:fileuploadObject.acceptSet the acce 2 min read Like