$.Class.callback(funcs, fname) -> Function
{}
{String|Array}
If a string, it represents the function to be called.
If it is an array, it will call each function in order and pass the return value of the prior function to the
next function.
{Function}
the callback function.
Returns a callback function for a function on this Class. The callback function ensures that 'this' is set appropriately.
Currying Arguments
Additional arguments to callback will fill in arguments on the returning function.Nesting Functions
Callback can take an array of functions to call as the first argument. When the returned callback function is called each function in the array is passed the return value of the prior function. This is often used to eliminate currying initial arguments.