Javascript examples for DOM HTML Element:Input Date
Input Date name Property - Change the name of a date field:
<!DOCTYPE html> <html> <body> Birthday: <input type="date" id="myDate" name="bday"> <button onclick="display()">Display name</button> <button onclick="change()">Change name</button> <script> function display() { var x = document.getElementById("myDate").name; console.log("The name of the date field is: " + x); } function change() {/* w w w .j a v a 2 s . c om*/ var x = document.getElementById("myDate").name = "newDateName"; console.log("The name was changed to: " + x); } </script> </body> </html>