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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:09:04+00:00 2026-05-28T14:09:04+00:00

I check two values with ajax. And if both are correct then i want

  • 0

I check two values with ajax. And if both are correct then i want to make a submit (post-back).
But the post-back doesn’t work.

Here is the code:

 $('form').submit(function () {

            var correctCaptcha = false;
            var correctWebcode = false;

        $.ajax({
            url: '/Competition/CheckForm',
            type: "POST",
            data: $(this).serialize(),
            success: function (data) {
                if (data == true) {
                    $('#recaptcha_response_field').removeClass("captchaError");
                    correctCaptcha = true;
                }
                else {
                    Recaptcha.reload();
                    $('#recaptcha_response_field').addClass("captchaError");
                }
            }
        });

        $.ajax({
             // like the code above (for webcode)
        });

        if (correctCaptcha == true && correctWebcode == true) {
            document.forms['form'].submit();
        }
        else { 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-05-28T14:09:05+00:00Added an answer on May 28, 2026 at 2:09 pm

    Use Async:false

        $.ajax({
            url: '/Competition/CheckForm',
            type: "POST",
            async:false,
            data: $(this).serialize(),
            success: function (data) {
                if (data == true) {
                    $('#recaptcha_response_field').removeClass("captchaError");
                    correctCaptcha = true;
                }
                else {
                    Recaptcha.reload();
                    $('#recaptcha_response_field').addClass("captchaError");
                }
            }
        });
    

    This will cause the infinite loop:

    if (correctCaptcha == true && correctWebcode == true) {
        document.forms['form'].submit();
    }
    

    So use use like this here

    if (correctCaptcha == true && correctWebcode == true) {
        return true;
    }
    else {return false;}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two Perl string variables containing date values. I want to check whether
What happens: When I write two values in both text boxes, the page doesn't
I'm trying to check if two values exist side by side each other. on
I have a situation where I'd like to post two values to a search
I won't to write some values into database with ajax on submit event, after
I'm trying to pass two values to a function, so that i can check
I have a quick question...How do I check two input[text] values against each other?
I'm trying to compare two values in the same table, and check if there
Currently I'm using TimeUnit.MILLISECONDS.toSeconds(valueInMillis) to check whether two millisecond values come from the same
im my web page having file upload option..it has to check two conditions. 1)whether

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.