the jquery source code begins with the following code:
function (w) {
if ( !w.document ) {
throw new Error( "jQuery requires a window with a document" );
}
return factory( w );
}
what does "w" mean here? Don"t you see any definition anywhere else?