What does the following syntax mean?
(function($){
$.fn.columnize = function(options) {
...
What’s function($)?
What’s $.fn. …?
|
What does the following syntax mean?
What’s What’s |
||||
|
|
|
This convention is used when writing plugins to ensure there is no confilict with other Javascript libraries using the $ notation, whilst ensuring the plugin author can still use this notataion:
The author is declaring an anonymous function with a single parameter ($), then immediately calling it and passing the jQuery object to it. This ensures the function is called and that everything in it is defined. A longer notation might be:
Although that would create a variable |
|||||||||||
|
|
It declares the |
|||
|
|
|
It's probably a jQuery extension, which basically pass (jQuery) at the end like
|
|||||
|
|
I just found this... is it a Proxy Pattern ? Proxy Pattern Combining the above knowledge gives you as a JavaScript developer quite a lot of power. One way to combine that is to implement a proxy pattern in JavaScript, enabling the basics of aspect-oriented programming (AOP):
The above wraps its code in a function to hide the "proxied"-variable. It saves jQuery's setArray-method in a closure and overwrites it. The proxy then logs all calls to the method and delegates the call to the original. Using apply(this, arguments) guarantees that the caller won't be able to notice the difference between the original and the proxied method. |
|||
|
|
|
Don't get confused by the So, the first line could be rephrased as
which might look more common. For the rest, yes it is a proxy pattern, and James Wiseman's answer is explaining, what's going on. |
|||
|
|
|
|
|||
|
|