HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <body> <h1>jQuery ajaxStop() Method</h1> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ $.get("/greet.php",function(data){ alert(data); }); }); $(document).ajaxStop(function() { alert("AJAX request stopped / finished."); }); }); </script> </body> </html>
OUTPUT
×

Save as Private