Thursday, July 4, 2024
HomeLanguagesJavascriptJQuery deferred.then() method

JQuery deferred.then() method

This deferred.then() method in JQuery is used to add handlers which are to be called when the Deferred object is resolved, rejected, or in progress.

Syntax:

deferred.then(doneCallbacks[, failCallbacks][, progressCallbacks])

Parameters:

  • doneCallbacks: This is a function, or an array of functions, which is called when the Deferred is resolved.
  • failCallbacks: This is a function, or an array of functions, which is called when the Deferred is rejected.
  • progressCallbacks: This is a function, or an array of functions, which is called when progress notifications are being sent to the Deferred object.

Return Value: This method method returns the deferred object.

There are two examples discussed below:

  • Example: In this example, the then() method is called with notify and resolve method.




    <!DOCTYPE HTML> 
    <html>  
    <head
        <title
          JQuery | deferred.then() method
        </title>
    </script
    </head>   
    <body style="text-align:center;">
        <h1 style="color:green;">  
            GeeksForGeeks  
        </h1
        <p id="GFG_UP"
        </p>
        <button onclick = "Geeks();">
        click here
        </button>
        <p id="GFG_DOWN"
        </p>
        <script
            var el_up = document.getElementById("GFG_UP");
            el_up.innerHTML = "JQuery | deferred.then() method";
            function Func1(val, div){
              $(div).append("From doneCallbacks - " + val);
            }
            function Func2(val, div){
              $(div).append("From failCallbacks - " + val);
            }
            function Func3(val, div){
              $(div).append("From progressCallbacks - " + val);
            }
            function Geeks() {
                var def = $.Deferred();
                def.then(Func1, Func2, Func3);
                def.notify('Deferred "def" is notified.<br/>'
                         , '#GFG_DOWN');
                def.resolve('Deferred "def" is resolved.<br/>'
                         , '#GFG_DOWN');
            
        </script
    </body>   
    </html>      
         

    
    
  • Output:
  • Example: In this example, the then() method is called with notify and reject method.




    <!DOCTYPE HTML> 
    <html>  
    <head
        <title
          JQuery | deferred.then() method
        </title>
        </script
    </head>   
    <body style="text-align:center;">
        <h1 style="color:green;">  
            GeeksForGeeks  
        </h1
        <p id="GFG_UP"
        </p>
        <button onclick = "Geeks();">
        click here
        </button>
        <p id="GFG_DOWN"
        </p>
        <script
            var el_up = document.getElementById("GFG_UP");
            el_up.innerHTML = "JQuery | deferred.then() method";
            function Func1(val, div){
              $(div).append("From doneCallbacks - " + val);
            }
            function Func2(val, div){
              $(div).append("From failCallbacks - " + val);
            }
            function Func3(val, div){
              $(div).append("From progressCallbacks - " + val);
            }
            function Geeks() {
                var def = $.Deferred();
                def.then(Func1, Func2, Func3);
                def.notify('Deferred "def" is notified.<br/>',
                           '#GFG_DOWN');
                def.reject('Deferred "def" is rejected.<br/>',
                           '#GFG_DOWN');
            
        </script
    </body>   
    </html

    
    
  • Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Calisto Chipfumbu
Calisto Chipfumbuhttp://cchipfumbu@gmail.com
I have 5 years' worth of experience in the IT industry, primarily focused on Linux and Database administration. In those years, apart from learning significant technical knowledge, I also became comfortable working in a professional team and adapting to my environment, as I switched through 3 roles in that time.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments