Question: Prior submitting the data collected via HTML forms from anonymous users to the server, it is important to check its validity and format. Form validation

Prior submitting the data collected via HTML forms from anonymous users to the server, it is important to check its validity and format. Form validation is a process implemented to check the user's input to ensure that the user has entered all the required fields with the correct data type required and expected by the server. To this end, assume that you have been asked to design the following form. First name: Last name: Phone: Items (between 1 and 5): shipping Method: Aramex O Fedex Mandob Submit The form should implement a client-side mechanism that prevents the user from entering wrong data or submit the form and one of these fields are blank (empty). Here is the list of requirements which have been requested by the client: 1- The user should fill all fields. 2- No special characters can be entered in the fields 3- First and last name fields is limited to 30 non-numeric characters. 4. The item field should only accept numbers between 1-5 5- The phone number should not be more than 8 numeric characters Implement the validation mechanism using a simple JavaScript code
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
