Ask Question

g Fill the validateForm function to check that the phone number is 10 characters long 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.

+3
Answers (1)
  1. 26 August, 02:28
    0
    function validateForm (event)

    {

    event. preventDefault ();

    var phoneNumber = form. phoneNumber. value;

    var userName = form. userName. value;

    if (phoneNumber. length!=10)

    console. log ("Phone Number is Invalid");

    if (userName. length<11)

    console. log ("User Name is Invalid"); }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “g Fill the validateForm function to check that the phone number is 10 characters long and that the user name is less than 11 characters ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers