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

  • Home
  • SEARCH
  • 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 3302720
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:52:53+00:00 2026-05-17T20:52:53+00:00

Well, i have a problem validating a form with jQuery. I’m Not using any

  • 0

Well, i have a problem validating a form with jQuery. I’m Not using any validation Framework (Such as http://docs.jquery.com/Plugins/Validation), because i need to do this without any Pre-Builded Solution (It’s an user requirement, Strange, by the way). I Have a Textbox, And I Need to Validate Any String, but, that string has no numbers or Special Characters (Such as !”·$%&/()=;,:.-_), It’s a Person Name. This is My Code:

<script type="text/javascript">
    $(document).ready(function(){
      var onlyChars = /^[A-Za-z]+$/;
      var onlyNums = /^[0-9]+$/;
      var mail = /^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/;
      var name = $("#txtname");
      function validateName()
      {
        if (name.val().length > 25)
        {
          alert("Too Longer");
          return false;
        }
        else if (name.val().match(/^[A-Za-z]+$/))
        {
          alert("Error, Pattern Doesn't Match");
          return false;
        }
        else
        {
          return true;
        }
      }
      $("#submitform").submit(function(){
        if (validateName())
        {
         return true;
        }
        else
        {
          return false;
        }
      });
    });
  </script>

The First Validation It’s Ok (If I Write More Than 25 Characters, The Alert is triggered and the submit event is aborted), But, the second validation doesn’t do it. In This case happens two events:

  1. The Field, having Not-Allowed Characters “Pass” the validation and the form is submitted.

  2. The Field, having only the allowed Characters Don’t Pass the validation and the form isn’t submitted.

I’ve Checked everything, and the “Two Issues” are completely Random.

Can You give me some Help?

Thanks a Lot!

PS: Sorry for the English, I’m not a “Native-Speaker”

  • 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-05-17T20:52:54+00:00Added an answer on May 17, 2026 at 8:52 pm

    Okay, I’ll bite.

    Look closely at this code:

        else if (name.val().match(/^[A-Za-z]+$/))
        {
          alert("Error, Pattern Doesn't Match");
          return false;
        }
    

    That reads: If name matches the pattern tell the user it doesn’t and don’t submit. You want to inverse that:

        else if (!name.val().match(/^[A-Za-z]+$/))
        {
          alert("Error, Pattern Doesn't Match");
          return false;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have jQuery validation working pretty well using a dialog for the error messages.
I have a form with the following format: <form id=program name=program method=get action=process.jsp> <div
I have an application that allows users to create forms and assign validation to
I have (or so I think!) a simple problem. I will greatly simplify my
I'm working on a really big order form with a bunch of multi-part data
Background I have a payment page where the user can select from a list
I have an app that successfully uses Facebook's single sign on to log a
I have some web apps and I have converted the UI to HTML5. With
I am creating a PHP application and I'm having a bit of trouble finding

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.