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()
|
When a function is chained in JQuery, what is the order of operations? Example 1
Example 2
| ||||
|
feedback
|
|
From left to right. This kind of chaining can be done in JQuery because each chainable function returns the object/element it was called on. So | |||
feedback
|
|
In this example:
The second parameter to function one is a callback function. This means In this example:
All functions are fired off as quickly as possible if they have a duration, like say an animation. Otherwise they execute in order So with animations, | |||||||
feedback
|
| |||
|
feedback
|