3

I have a page where I have implemented a long polling function to check the timestamp of a record, so it will update if the data has been edited.

<script type="text/javascript">
var poll_url = 'http://mysite.com/poll/;
var my_ts = <?php $_SESSION['template_timestamp']; ?>;
(function poll(){
    $.ajax({ 
        url: poll_url,
        type: 'post',
        success: function(data){
            if ((data.ts > 0) {
                // check if expired
                if (data.ts > my_ts) {
                    // it has expired, so reload the page
                    $("#dialog-message").html('Record has been edited.');
                    // show popup
                    $("#dialog-message").dialog({
                        modal: true,
                        buttons: {
                            Reload: function() {
                                $(this).dialog("close");
                                $('#pleaseWait').show();
                                window.location.href = '/records/overview';
                            }
                        }
                    });
                }
            } else {
                // is still null
                console.log('error');
            }
        }, 
        dataType: "json", 
        complete: poll, timeout: 30000 
    });
})();
</script>

The problem I have is that there is also another action which invokes a JS ajax call, which when called I would like to force the long polling function to stop.
Is there a way to do this?

Rooneyl
  • 7,802
  • 6
  • 52
  • 81
  • The following SO question may provide the answer... http://stackoverflow.com/questions/446594/abort-ajax-requests-using-jquery – Stuart Wakefield Oct 22 '12 at 09:58
  • @StuartWakefield ; thanks fot that. Didn't find that snippet. If you post that comment as an answer I will accept it. – Rooneyl Oct 22 '12 at 10:24

1 Answers1

5

The following SO question may provide the answer... Abort Ajax requests using jQuery

Applying that to your code snippet, you might get something along the lines of...

<script type="text/javascript">
var poll_url = 'http://mysite.com/poll/';
var my_ts = <?php $_SESSION['template_timestamp']; ?>;
var poll_xhr;

(function poll(){
    poll_xhr = $.ajax({ 
        url: poll_url,
        type: 'post',
        success: function(data){
            // Code removed
        }, 
        dataType: "json", 
        complete: poll, 
        timeout: 30000 
    });
})();

// To kill the AJAX request, put this where it makes sense
poll_xhr.abort();
</script>
Community
  • 1
  • 1
Stuart Wakefield
  • 6,294
  • 24
  • 35