var
window = this,
undefined,
_jQuery = window.jQuery,
_$ = window.$,
jQuery = window.jQuery = window.$ = function( selector, context ) {
return new jQuery.fn.init( selector, context );
};
Why does jQuery need "_ $ = window. $" Or "_QQuery = window.jQuery"? For me this does not make sense, but without these two lines the structure does not work.
Thanks for any help ..
source
share