Input Week name Property
Example
Get the name of a week field:
var x = document.getElementById("myWeek").name;
The result of x will be:
bdaytime
Try it Yourself »
Definition and Usage
The name property sets or returns the value of the name attribute of a week field.
The name attribute is used to identify form data after it has been submitted to the server, or to reference form data using JavaScript on the client side.
Note: Only form elements with a name attribute will have their values passed when submitting a form.
Browser Support
The name property is supported in all major browsers.
Note: The <input type="week"> element is not supported in Internet Explorer or Firefox.
Syntax
Return the name property:
weekObject.name
Set the name property:
weekObject.name=name
Property Values
Value | Description |
---|---|
name | Specifies the name of the week field |
Technical Details
Return Value: | A String, representing the name of the week field |
---|
More Examples
Example
Change the name of a week field:
document.getElementById("myWeek").name = "newWeekName";
Try it Yourself »
Related Pages
HTML reference: HTML <input> name attribute
Input Week Object