DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Html5

HTML5 Form Validation Examples

Share

For an old days we used JavaScript validation to validate any form in a website and this was until recently unthinkable. But as soon as the HTML5 came then the validation becomes very easy to maintain in any form.

Here is some example of HTML5 Form Validation:

The ‘required’ attribute
This simply checks whether the value is mandatory or not.

Name: <input type="text" id="name" name="name" required>

This attribute can also be apply to checkboxes.

New INPUT types for text
Previously we only used to be with ‘text’ input type but now there are many more like email, url, number, tel, date and many others.

Email: <input type="email" id="email" name="email" required>
URL: <input type="url" id="url" name="url" required>
Year: <input type="number" size="4" id="year" name="year" min="1960" max="1999">
 Age: <input type="range" size="2" id="age" name="age" min="18" max="60" value="20">

Besides that there many more input types i.e. color, date, datetime, datetime-local, month, search, tel, time, week.

Patterns for input types

URL pattern: <input type="url" id="url" name="url" required pattern="https?://.+">
IPv4 Address input pattern: <input type="text" id="ip" name="ip" required pattern="\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}">
Date pattern (dd/mm/yyyy or mm/dd/yyyy): <input type="text" id="date" name="date" required pattern="\d{1,2}/\d{1,2}/\d{4}">
Price pattern: <input type="text" id="price" name="price" required pattern="\d+(\.\d{2})?">
Html Developer

Recent Posts

Why is SEO a non-negotiable part of modern marketing?

In a world where digital presence is paramount, the question isn't whether you should do…

5 hours ago

Innovations in Hair Care: Exploring Breakthroughs for Lasting Results

Over the years, people have experimented with various methods to maintain healthy and beautiful hair.…

1 day ago

How To Strengthen Your Brand-Building Efforts?

Your brand more than developing an attractive and creative logo and infectious motto. It's the…

2 days ago

How To Be Successful And Maximize Compensation In A Personal Injury Case

Introduction Are you someone who has suffered from a personal injury and want to file…

2 days ago

What Are The Biggest Challenges Of Working From Home?

Operating from home has emerged as one of the most popular ways of doing jobs…

3 days ago

Art As An Asset: Will NFT’s Help You Survive Hyperinflation?

If the consequences of our society’s ever-growing debt are what worries you, then it is…

4 days ago