The Remote Attribute
In this lesson, we will learn how to use the `RemoteAttribute` that performs a client-side validation by issuing an AJAX call to the server.
We'll cover the following...
There are situations when an input must be validated as soon as it is provided, but the information needed for the validation is available only on the server-side. A common example is the validation of unique identifiers chosen by the user, such as an email address, a username, or the subdomain name for a blog or any other personal set of pages.
It is important to furnish immediate feedback on the availability of the name so that the user can easily check several names till they find an available name they like. The verification requires a check on the server’s permanent storage.
The ...