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

Input Text required Property

Input Text Object Reference Input Text Object

Example

Find out if a text field must be filled out before submitting a form:

var x = document.getElementById("myText").required;

The result of x will be:

true
Try it Yourself »

Definition and Usage

The required property sets or returns whether a text field must be filled out before submitting a form.

This property reflects the HTML required attribute.


Browser Support

Property
required Yes 10.0 Yes Not supported Yes

Syntax

Return the required property:

textObject.required

Set the required property:

textObject.required=true|false

Property Values

Value Description
true|false Specifies whether a text field should be a required part of form submission.
  • true - The text field is a required part of form submission
  • false - Default. The text field is not a required part of form submission

Technical Details

Return Value: A Boolean, returns true if the text field is a required part of form submission, otherwise it returns false

More Examples

Example

Set a text field to be a required part of form submission:

document.getElementById("myText").required = true;
Try it Yourself »

Related Pages

HTML reference: HTML <input> required attribute


Input Text Object Reference Input Text Object