Skip to content Skip to sidebar Skip to footer

How To Avoid Multiple AJAX Calls?

I'm submitting a form via AJAX using the code below: $( 'form' ).submit(function(e) { $.ajax({ type: 'POST', url: ajax_url, dataType: 'json', d

Solution 1:

Just add there some control variable:

var isSubmitting = false;

$( 'form' ).submit(function(e) {
    if(isSubmitting) {
        return;
    }
    isSubmitting = true;
    $.ajax({
        type: 'POST',
        url: ajax_url,
        dataType: 'json',
        data: {
            'action': 'my_action',
            'str': $( 'form' ).serialize()
        },
        success: function( data ) {
            isSubmitting = false;
            // Do something here.
        },
            error: function( data ) {
            isSubmitting = false;
            // Do something here.
        }
    });
    return false;
});

Solution 2:

Disable the submit button on the first click and re-enable it, when the AJAX call comes back.

For example:

$( 'form' ).submit(function(e) {
    var $form = $(this);
    $form.find('submit').attr('disabled', true);
    $.ajax({
        type: 'POST',
        url: ajax_url,
        dataType: 'json',
        data: {
            'action': 'my_action',
            'str': $( 'form' ).serialize()
        },
        complete: function() {
            $form.find('submit').removeAttr('disabled');
        },
        success: function( data ) {
            // Do something here.
        },
        error: function( data ) {
            // Do something here.
        }
    });
    return false;
});

Solution 3:

Just hide and show the submit button on submit.

$( 'form' ).submit(function(e) {
  $('#my_button').hide();
  $.ajax({
    type: 'POST',
    url: ajax_url,
    dataType: 'json',
    data: {
        'action': 'my_action',
        'str': $( 'form' ).serialize()
    },
    success: function( data ) {
        // Do something here.
    },
    error: function( data ) {
        // Do something here.
    },
    complete: function(){
        $('#my_button').show();
    }
});
return false;

});


Post a Comment for "How To Avoid Multiple AJAX Calls?"