Validate Fields Using HTML5
by satheeshkumar[ Edit ] 2013-07-12 17:49:32
Validate Fields Using HTML5 ,
You can validate a simple form using html5 like name.email,mobile no.,etc..
<form>
<input type="text" placeholder="Enter your full name" required><
<input type="email" placeholder="Enter email address" required><
<input type="tel" name="tel" id="tel" required>
<input id="startdate" name="startdate" type="date">
<input type="submit" value="Submit">ed>
</form>