-1

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?

Seth McClaine
  • 9,142
  • 6
  • 38
  • 64

1 Answers1

0

Not 100% on this but you might be able to do this

$(window).load(function(e) {
    e.preventDefault();
    e.stopPropagation
});
Seth McClaine
  • 9,142
  • 6
  • 38
  • 64