Week 10

Client-Side Form Validation

Form validation happens when a user enters information and the browser and server check to see if the input is valid.

Reasons to Validate

Types of Client-Side Validation

Built-in Form Validation

If an element is valid, you can use the :valid CSS psuedo-class. If an element is invalid, you can use :invalid.

Regular Expressionn Validation

Constrain Entry Values

If the user types in a number outside the range, it will be invalid.

JavaScript Form Validation

Constraint Validation API

Methods and properties are available on these elements:

These are some of the properties available:

Here are some of the methods available:


Click For Example

Using Fetch

A Basic Fetch Request

fetch('http://example.com/movies.json')
.then((response) => {
return response.json();
})
.then((data) => {
console.log(data);
});

Response Objects

When a fetch() promise is resolved, it returns a response instance. The most common properties are: Response.status, Response.statusText, and Response.ok

See notes.js file for more examples and notes.