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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T17:41:22+00:00 2026-06-17T17:41:22+00:00

Imagine the first time, the data doesn’t matched and ajax has returned the request

  • 0

Imagine the first time, the data doesn’t matched and ajax has returned the request then sending an error message to the form, after that how do i stop ajax call if there’s no changes made on the form/input?

$("input[name=signup]").click(function(event) {

if ($(this).attr('type') == "submit" && $(this).attr('name') == "signup") {

        formValidate = function() {
            $.ajax({
                url:   "/ajax/req-signup.aspx",
                type: "post",
                dataType: "json",
                data: { ... },
                success: function(response) { ... }
            });
        }
        formValidate();
    }
event.preventDefault();
});
  • 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-17T17:41:23+00:00Added an answer on June 17, 2026 at 5:41 pm

    add a global variable

    var allowAjax = true;
    

    set it to false when validation fails:

    allowAjax = false;
    

    set to true when changing something in the form

    $("input").change(function () {
        allowAjax = true;
    });
    

    and check it’s status when making the ajax call:

    if ($(this).attr('type') == "submit" 
       && $(this).attr('name') == "signup" 
       && allowAjax ) { ... }
    

    Alternatively, you can disable the submit button when the validation fails and enable it on change.

    $(":submit").attr('disabled', 'disabled');
    

    If you don’t mind using a plugin, check out jQuery disabler widget, you might find it easier to use.

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

Sidebar

Related Questions

Possible Duplicate: C++ invoke explicit template constructor First imagine I have a class Data
Imagine I have a method: void Method(bool parameter){ if(parameter){ // first case } else
Let's imagine I want to make a templated function that returns the first element
Imagine this as the code from build.xml: <project name=test project> <target name=first> <echo>first</echo> </target>
Imagine I've got a database with lots of data, from which users can search.
Let me define the problem first and why a messagequeue has been chosen. I
I'm designing a Core Data app which needs to keep dated records. Imagine a
Imagine this scenario: I have a link that fires up a JavaScript function(has an
I'm trying to select the first ten empty time slots between appointments in a
I have a data frame the first columns of which are a sample ID

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.