I'm delving into writing plugins for jQuery and I'm trying to understand the distinction between $.f and $.fn.f
I've seen pluggin authors use both, or sometimes assign $.f = $.fn.f
Can someone explain this to me, reasoning, benefits, etc?
|
I'm delving into writing plugins for jQuery and I'm trying to understand the distinction between $.f and $.fn.f I've seen pluggin authors use both, or sometimes assign $.f = $.fn.f Can someone explain this to me, reasoning, benefits, etc? |
|||
|
|
|
Looking at the jQuery source code will clear things up. By the way,
if you look at jQuery's source, you'll see that
So, whenever you attach a method (or property) to Whenever you invoke the
and this instance has all the methods we attached to the prototype, but not the methods that were attached directly to the You will get an exception if you try calling a function that wasn't defined at the right place.
Oh, and finally to cut a long thread short and to answer your question - doing |
||||
|
|
|
The "$.fn.f" is simply a shortcut to "jQuery.prototype" By using the "fn", you can add plugin methods without using the extend method: jQuery.fn.myPlugin = function(opts) { ... } |
|||
|
|
|
The A utility function is basically a function within the jQuery namespace that is useful for performing some operation, for example, jQuery methods on the other hand operate on jQuery objects/wrapped sets. For example, |
|||||||||||
|