THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Color name Property

Input Color Object Reference Input Color Object

Example

Get the name of a color picker:

var x = document.getElementById("myColor").name;

The result of x will be:

favcolor
Try it Yourself »

Definition and Usage

The name property sets or returns the value of the name attribute of a color picker.

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

Property
name Yes 10.0 Yes Yes Yes

Note: The <input type="color"> element does not show any colorpicker in Internet Explorer and Safari.


Syntax

Return the name property:

colorObject.name

Set the name property:

colorObject.name=name

Property Values

name Description
name Specifies the name of the color picker

Technical Details

Return Value: A String, representing the name of the color picker

More Examples

Example

Change the name of a color picker:

document.getElementById("myColor").name = "newColorName";
Try it Yourself »

Related Pages

HTML reference: HTML <input> name attribute


Input Color Object Reference Input Color Object