jQuery has sent the aJax function when the page is loaded.
I wonder if these functions can be stop or interrupt before the page is reloaded?
jQuery has sent the aJax function when the page is loaded.
I wonder if these functions can be stop or interrupt before the page is reloaded?
 
    
    Not 100% on this but you might be able to do this
$(window).load(function(e) {
    e.preventDefault();
    e.stopPropagation
});
