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

Input Number type Property

Input Number Object Reference Input Number Object

Example

Return which type of form element the number field is:

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

The result of x could be:

number
Try it Yourself »

Definition and Usage

The type property returns which type of form element the week field is.

For an input number, this property will always return "number".


Browser Support

Property
type Yes 10.0 Yes Yes Yes

Syntax

numberObject.type

Technical Details

Return Value: A String, representing the type of form element the number field is

Input Number Object Reference Input Number Object