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

Input URL required Property

Input URL Object Reference Input URL Object

Example

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

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

The result of x will be:

true
Try it Yourself »

Definition and Usage

The required property sets or returns whether a URL 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:

urlObject.required

Set the required property:

urlObject.required=true|false

Property Values

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

Technical Details

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

More Examples

Example

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

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

Related Pages

HTML reference: HTML <input> required Attribute


Input URL Object Reference Input URL Object