When a function is chained in JQuery, what is the order of operations?

Example 1

$(selector).fun1(val,{fun2(){ }}

Example 2

$(selecter).fun1().fun2().fun3() 
link|improve this question

75% accept rate
feedback

3 Answers

From left to right. fun3() is run on the result (=return value) of fun2(), fun2() on that of fun1().

This kind of chaining can be done in JQuery because each chainable function returns the object/element it was called on.

So $(selector).fun1() returns the $(selector) element after execution. fun2() is called from that returned element, and so on.

link|improve this answer
Thank you friend! I was very confused before but now my confusion is cleared. Thanks again! – Param-Ganak Feb 5 '10 at 13:37
feedback

In this example:

$(selector).fun1(val,{fun2(){ }}

The second parameter to function one is a callback function. This means fun1 executes THEN fun2 executes.

In this example:

$(selecter).fun1().fun2().fun3()

All functions are fired off as quickly as possible if they have a duration, like say an animation. Otherwise they execute in order fun1, fun2, fun3.

So with animations, fun1, fun2 and fun3 would be 3 simultaenous overlapping animations, but with other synchronous operations, they simply happen in order.

link|improve this answer
1  
So with animations, fun1, fun2 and fun3 would be 3 simultaenous overlapping animations - I think you're overcomplicating this part a bit. With animations, the actual functions still fire in order, but themselves create intervals with callback functions. Since JS is single threaded, functions can't run asynchronously. Timers tick down seperate from the main thread, but their callback functions are run on the main thread when it becomes idle. – Andy E Feb 5 '10 at 13:16
@Andy - True, I meant effect is simultaneous and overlapping :) – Nick Craver Feb 5 '10 at 13:21
feedback
  1. Uses a "callback" function. You're passing fun2 as an argument to fun1, fun1 then calls fun2 when it's finished.
  2. This is a really clever feature of jQuery, most of jQuery's methods return the original object the method was called on, so you can call another method on that returned object. The sequence is the same as the sequence it's written in.
link|improve this answer
Thank you friend! Your reply is very useful for me. – Param-Ganak Feb 5 '10 at 13:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.