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:

<inputtype="text"name="name"required>

Solution 2:

Use HTML input required attribute

example

<inputtype="text"name="foo"value=""required>

also take a look at HTML Required Attribute Tutorial

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