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 9271417
In Process

The Archive Base Latest Questions

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

I am using jQuery to validate some fields in a form, and seem to

  • 0

I am using jQuery to validate some fields in a form, and seem to be having an issue with one field in particular (#inputTel).

If an incorrect format is entered, an error message pops up underneath, which is fine, but the problem is once the correct format is entered the message does not disappear.

Here’s a jsFiddle with the complete demo.

This is the section in question:

//Tel Validate
function is_valid_tel() {
    $this = $("#inputTel");
    var pattern = new RegExp("^\d{11}$");
    if (pattern.test($this.val())) { // valid
        if ($this.closest(".control-group").hasClass("error")) $this.closest(".control-group").removeClass("error");
        $this.siblings(".help-inline").css("display", "none");
        return true;
    } else { // error
        if (!$this.closest(".control-group").hasClass("error")) $this.closest(".control-group").addClass("error");
        $this.siblings(".help-inline").css("display", "block");
        return false;
    }
}

Every other field works as expected except this one. My jQuery skills are limited so I’m unsure of how to solve this.

  • 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-18T15:36:53+00:00Added an answer on June 18, 2026 at 3:36 pm

    Problem in your code:

    Replace var pattern = new RegExp("^\d{11}$"); with var pattern = new RegExp(/^\d{11}$/);

    Updated code

    //Tel Validate
    function is_valid_tel() {
        $this = $("#inputTel");
        var pattern = new RegExp(/^\d{11}$/);// Update this line
        if (pattern.test($this.val())) { // valid
            if ($this.closest(".control-group").hasClass("error")) $this.closest(".control-group").removeClass("error");
            $this.siblings(".help-inline").css("display", "none");
            return true;
        } else { // error
            if (!$this.closest(".control-group").hasClass("error")) $this.closest(".control-group").addClass("error");
            $this.siblings(".help-inline").css("display", "block");
            return false;
        }
    }
    

    Check the fiddle http://jsfiddle.net/rfg8H/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using jquery.validationengine.en.js to (custom )validate my form fields. For one field, I'm using
I'm using the jQuery Validation Engine to validate some form fields. Everything's working well
I'm currently using this jQuery validate plugin and having an issue in IE where
I'm using the jQuery validate plugin to validate a multi-step form like this one:
I m using jquery validator plugin. i need to validate some field with some
I'm using jquery-validate to do some simple form validation on a page in conjunction
I’m using jQuery Validate for my site’s contact form. The input fields have pre-populated
I'm using jquery-ui autocomplete to validate some form inputs. I've got this code :
I am using the jquery validate plugin, in combination with some custom field types
I have a form that is using the jQuery validate functionality, with some custom

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.