Question: Fill the validateForm function to check that the phone number contains a number (use the isNaN function) and that the user name is less than

Fill the validateForm function to check that the phone number contains a number (use the isNaN function) and that the user name is less than 11 characters long. Display "Phone number is invalid" and/or "User name is invalid" in the console log if the check does not pass. Use the preventDefault function to avoid submitting the form when the inputs are invalid. NEEDS TO BE IN JAVASCRIPT!

html code:

JAVA:

var form = document.getElementById("userForm");

function validateForm(event) { var phoneNumber = form.phoneNumber.value; var userName = form.userName.value;

/* Your solution goes here */

}

form.addEventListener("submit", validateForm);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!