Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

137
Views
How To Validate Form Field Using Javascript

I am trying to validate my form phone field to prevent users from entering the same numbers in my javascript.

If the number provided by the user matches with the same numbers in my javascript, They will get a warning and the form would not submit.

However, I noticed that my code below shows the warning whether the numbers match or not.

I need corrections to know what I am doing wrong. Thanks.

Code below;

 $('.validate').hide();
    $('body').on('blur', '#phone', function() {
        $('.validate').hide();
        isphone($(this).val());
    });

    function isphone(phone) {
        if (phone === "1234" || phone === "23456"){
            $(".validate").show();
         
        } else {
            $(".validate").hide();
        }
    }
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>

<form action='' method='POST' id="submitForm" >
   
 <input type="phone" name='phone'  required=''  id="phone" placeholder="0000-000-0000"/>

 <div class="validate"><span style="color: red;"><b>Please enter a valid phone!</b></span></div>
 
 <button href='/' type='submit' id="submitForm">Process</button>
 
 </form>

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

I believe this should work. I move the changes for hiding and showing $('.validate') to the isphone function, and removed that done variable that wasn't doing anything useful (used if...else instead). Also, don't use document.getElementById if you're already using JQuery.

    $('.validate').hide();
    $('body').on('blur', '#phone', function() {
        $('.validate').hide();
        isphone($(this).val());
    });

    function isphone(phone) {
        if (phone === "1234" || phone === "23456"){
            $(".validate").hide();
        } else {
            $(".validate").show();
        }
    }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!