Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does (function($) {})(jQuery); mean?

I am just starting out with writing jQuery plugins. I wrote three small plugins but I have been simply copying the line into all my plugins without actually knowing what it means. Can someone tell me a little more about these? Perhaps an explanation will come in handy someday when writing a framework :)

What does this do? (I know it extends jQuery somehow but is there anything else interesting to know about this)

(function($) {  })(jQuery); 

What is the difference between the following two ways of writing a plugin:

Type 1:

(function($) {     $.fn.jPluginName = {          },          $.fn.jPluginName.defaults = {          } })(jQuery); 

Type 2:

(function($) {     $.jPluginName = {          } })(jQuery); 

Type 3:

(function($){      //Attach this new method to jQuery     $.fn.extend({           var defaults = {           }            var options =  $.extend(defaults, options);            //This is where you write your plugin's name         pluginname: function() {              //Iterate over the current set of matched elements             return this.each(function() {                  //code to be inserted here              });         }     });  })(jQuery); 

I could be way off here and maybe all mean the same thing. I am confused. In some cases, this doesn't seem to be working in a plugin that I was writing using Type 1. So far, Type 3 seems the most elegant to me but I'd like to know about the others as well.

like image 433
Legend Avatar asked May 30 '10 01:05

Legend


People also ask

What does function () mean in JS?

A function in JavaScript is similar to a procedure—a set of statements that performs a task or calculates a value, but for a procedure to qualify as a function, it should take some input and return an output where there is some obvious relationship between the input and the output.

What does $() mean in JavaScript?

The $() function The dollar function, $(), can be used as shorthand for the getElementById function. To refer to an element in the Document Object Model (DOM) of an HTML page, the usual function identifying an element is: document.

What does $( document .ready function () do?

$( document ). ready()A page can't be manipulated safely until the document is "ready." jQuery detects this state of readiness for you. Code included inside $( document ). ready() will only run once the page Document Object Model (DOM) is ready for JavaScript code to execute.


2 Answers

Firstly, a code block that looks like (function(){})() is merely a function that is executed in place. Let's break it down a little.

1. ( 2.    function(){} 3. ) 4. () 

Line 2 is a plain function, wrapped in parenthesis to tell the runtime to return the function to the parent scope, once it's returned the function is executed using line 4, maybe reading through these steps will help

1. function(){ .. } 2. (1) 3. 2() 

You can see that 1 is the declaration, 2 is returning the function and 3 is just executing the function.

An example of how it would be used.

(function(doc){     doc.location = '/';  })(document);//This is passed into the function above 

As for the other questions about the plugins:

Type 1: This is not a actually a plugin, it's an object passed as a function, as plugins tend to be functions.

Type 2: This is again not a plugin as it does not extend the $.fn object. It's just an extenstion of the jQuery core, although the outcome is the same. This is if you want to add traversing functions such as toArray and so on.

Type 3: This is the best method to add a plugin, the extended prototype of jQuery takes an object holding your plugin name and function and adds it to the plugin library for you.

like image 195
RobertPitt Avatar answered Sep 20 '22 09:09

RobertPitt


At the most basic level, something of the form (function(){...})() is a function literal that is executed immediately. What this means is that you have defined a function and you are calling it immediately.

This form is useful for information hiding and encapsulation since anything you define inside that function remains local to that function and inaccessible from the outside world (unless you specifically expose it - usually via a returned object literal).

A variation of this basic form is what you see in jQuery plugins (or in this module pattern in general). Hence:

(function($) {   ... })(jQuery); 

Which means you're passing in a reference to the actual jQuery object, but it's known as $ within the scope of the function literal.

Type 1 isn't really a plugin. You're simply assigning an object literal to jQuery.fn. Typically you assign a function to jQuery.fn as plugins are usually just functions.

Type 2 is similar to Type 1; you aren't really creating a plugin here. You're simply adding an object literal to jQuery.fn.

Type 3 is a plugin, but it's not the best or easiest way to create one.

To understand more about this, take a look at this similar question and answer. Also, this page goes into some detail about authoring plugins.

like image 34
Vivin Paliath Avatar answered Sep 21 '22 09:09

Vivin Paliath