HTML | DOM Input FileUpload name Property Last Updated : 29 Aug, 2022 Comments Improve Suggest changes Like Article Like Report 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 Values: name: Specifies the name of the file upload button. Return Value: It returns a string that represents file upload button name. Examples-1: Return "name" property. HTML <!DOCTYPE html> <html> <head> <style> h1 { color: green; } </style> </head> <body> <center> <h1> Geeks for Geeks </h1> <input type="file" id="myFile" name="gfgFile"> <p id="demo"></p> <button onclick="myFunction()"> Click </button> <script> function myFunction() { var x = document.getElementById("myFile").name; document.getElementById("demo").innerHTML = x; } </script> </center> </body> </html> Output: Before: After: Examples-2: Set "name" property. HTML <!DOCTYPE html> <html> <head> <style> h1 { color: green; } </style> </head> <body> <center> <h1> Geeks for Geeks </h1> <input type="file" id="myFile"> <p id="demo"></p> <button onclick="myFunction()"> Try it </button> <script> function myFunction() { var x = document.getElementById( "myFile").name = "new name"; 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 name Property V Vijay Sirra Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML DOM Input FileUpload multiple Property The Input FileUpload multiple Property in HTML DOM is used to set or return one or multiple files selected with the file upload button. It contains a Boolean value which is true when the user is allowed to select more than one file. This property is used to reflect the HTML multiple attributes. Synt 2 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 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 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 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