What is more efficient in jquery:
if ($.isFunction(func_name)
$.apply(func_name, [param, etc])
or
if ($.isFunction(func_name)
func_name(param, etc)
What are the advantages to call $.apply() or $.call() over calling directly the object if it is a function as a callback.
Thanks