FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

Input Color type Property

Input Color Object Reference Input Color Object

Example

Find out which type of form element the color picker is:

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

The result of x will be:

color
Try it Yourself »

Definition and Usage

The type property returns which type of form element the color picker is.

For a color picker this property will always return "color".


Browser Support

Property
type Yes 10.0 Yes Yes Yes

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


Syntax

colorObject.type

Technical Details

Return Value: A String, representing the type of form element the color picker is

Input Color Object Reference Input Color Object