Skip to content Skip to sidebar Skip to footer

How To Get Required Input Fields

How do I get required input fields? thanks

Solution 1:

This is a simple solution:

<input type="text" name="name" required>

Solution 2:

Use HTML input required attribute

example

<input type="text"name="foo"value=""required>

also take a look at HTML Required Attribute Tutorial


Post a Comment for "How To Get Required Input Fields"