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> </head> <body> <h1>jQuery deferred.notifyWith() Method</h1> <button>notifyWith button</button> <script> $(document).ready(function(){ $("button").click(function(){ var deferred = $.Deferred(); deferred.progress(myNotifyWith) deferred.then(myFunction) deferred.notifyWith(this, ['deferred is in progress']) deferred.resolve("deferred is done"); }); function myFunction(value){ alert(value); } function myNotifyWith(value){ alert("You clicked : " +$(this).text()); alert(value); } }); </script> </body> </html>
OUTPUT
×

Save as Private