jQuery API によると$()
、一致した要素のコレクションであることがわかります。しかし、何$
ですか?imagesLoaded
以下のライブラリの例。
if ( $ ) {
$.fn.imagesLoaded = function( options, callback ) {
var instance = new ImagesLoaded( this, options, callback );
return instance.jqDeferred.promise( $(this) );
};
}