The min section of the file name refers to a version with
the spaces and comments removed for faster transmission. If you want
a human-readable version, try without the min.
Wraps the DOM elements in jQuery objects which add methods and
capabilities.
Everything happens through $.
Getting DOM elements.
Select elements $(s), where s is
any CSS selector. $('p'), $('.area').
Create elements $(h),
where h
an HTML tag. $("<div>"), $("<a>").
These are created, but must still be added to the document.
The above return wrapped DOM elements. If you have an un-wrapped
one, say e, from some native call, $(e) will
wrap it.
The select/create constructions make collections, to which modifiers
are applied.