Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9252161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:52:31+00:00 2026-06-18T10:52:31+00:00

I am trying to validate the user’s input by linking a JS file to

  • 0

I am trying to validate the user’s input by linking a JS file to validate the inputs. However, when I click the submit button with erroneous data, the form is submitted and no validation error is given.

The form:

<form id="user_form" name="contactForm" action="#" method="GET" onsubmit="return validateForm();">

<p id="first_name" class="input_title">First name <span class="asterisk_red">*</span></p>

<!-- The HTML 5 'Required' attribute will not allow the form to be sent empty. -->
<input class="input_box" type="text" name="first_name" placeholder="Joe" />

<input id="submit_button" type="submit" name="submit" value="Submit"/>

</form>

And the JS I use to validate:

function validateForm(){

/* Validate the first name field of the form */
var fn = document.forms['contactForm'].first_name.value;

/* If the Name string is empty then return false and show warning. */
if (fn == ""){
    alert("First name must be filled out");
    document.forms['contactForm'].first_name.reset();
    return false;
}else if(fn.length <= 2){
    alert("Your first name must more than two characters");
    document.forms['contactForm'].first_name.reset();
    return false;
}


}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T10:52:32+00:00Added an answer on June 18, 2026 at 10:52 am

    I am not sure if you can call reset() on an element. I think you use that method on form object to clear all the fields. IE and FF doesn’t seem to have a problem but Chrome seem to. As a result, chrome doesn’t execute the javascript and submits the form always. Here is fiddle Form Submit and the updated code:

    function validateForm() {
    
                /* Validate the first name field of the form */
                var fn = document.forms['contactForm'].first_name.value.trim();
    
                /* If the Name string is empty then return false and show warning. */
                if (fn == "") {
                    alert("First name must be filled out");
                    document.forms['contactForm'].first_name.value = '';//Removed reset
                    return false;
                } else if (fn.length <= 2) {
                    alert("Your first name must more than two characters");
                    document.forms['contactForm'].first_name.value = '';//Removed reset
                    return false;
                }
                return true;//Added
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to validate user input from a form before submit but it
I am trying to validate user input in a form instantly using jquery. I
I'm trying to validate user input data using jquery. Here is the code I
I'm trying to validate user input, which is just comma separated numbers. I'd like
While trying to validate form data on my page i get the following error:
i am trying to validate a user registration form in Zend Framework 2. More
I have a jQuery Dialog form and on submit I'm trying to validate the
I'm trying to validate my inputs with jQuery before a form is sent. This
I consistently run into this problem where I'm trying to validate user input but
I'm trying to validate that the input a user gives my program via gets

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.