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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T00:08:33+00:00 2026-06-06T00:08:33+00:00

I have a form validation method that’s called on submit. It executes a get

  • 0

I have a form validation method that’s called on submit. It executes a “get” to validate one of the fields, and returns false if the field is invalid:

$.get('validate.cfc', 
    {
        method: 'validateUserID',
        userID: $('#userID').val(),
        returnformat: 'plain'
    },
    function(data){
        if($.trim(data) == 0){
            alert('Invalid userID!');
            return false;
        }
    }
);

It then goes on to do a few further simple validation steps (without an ajax call). For example:

if(!isDate($('#endDate').val()) && $('#endDate').val() != ""){
    alert("Please enter a valid end date");
    return false;
}

The problem is that the code continues while the get executes. So if the userID is not valid and the end date is not a date, first the “Please enter a valid end date” message shows up, and then the “Invalid userID!” message. How can I get my code to wait till the get is finished?

(The only thing I can think of is to put a small setTimeOut around all the rest of the code in the function after the get… not the most elegant solution.)

  • 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-06T00:08:35+00:00Added an answer on June 6, 2026 at 12:08 am

    If I get it right, then this should do it:

    $.get('validate.cfc', 
    {
        method: 'validateUserID',
        userID: $('#userID').val(),
        returnformat: 'plain'
    },
    function(data){
        if($.trim(data) == 0){
            alert('Invalid userID!');
            return false;
        }else{
                if(!isDate($('#endDate').val()) && $('#endDate').val() != ""){
                alert("Please enter a valid end date");
                return false;
    
                }else{
                       submit the form
                     }
             }
     }
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method, -(void)validateFormInput:(UITextField *)textField that gets called when the form's submit button
I have a JavaScript method that i want to validate a form if the
I have a form that worked perfectly until I switched the form to method=get
I have this form that validates the fields on submit through ajax (using Codeigniter's
Im using the bassistance form validation. I have a couple of fields that require
I have a small jQuery plugin that I use for form AJAX validation. There
I have a form that calls on two separate models. My validation works correctly
I have a Django form that needs to do some client-side validation before submitting
need a little help with this one. I have a form that I am
I am aware that I can Google HTML Form Validation and would get a

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.