In jQuery, that $ .fn. I mean? I looked at it on google but did not find specific examples.
$.fn.something = function{}
This allows you to extend jQuery with your own functions.
For example,
will allow you to use
$("#element").something()
$.fn also synonymous with jQuery.fn , which can simplify Google searches.
$.fn
jQuery.fn
See jQuery Plugins / Authoring
It is described in detail here:
Why does jQuery do this: jQuery.fn.init.prototype = jQuery.fn?
But, nevertheless, $.fn is an alias for $jQuery.prototype
$jQuery.prototype
See Plugins / Creation