jQuery BogoMenu Plugin jQuery.createBogoMenu() is a function which creates menus from a JavaScript
object representation, as opposed to the more conventional HTML representation.
If you would like to see a standalone demo,
click here.
What the various *.js files are:
*.jquery.js or jquery.PLUGIN_NAME.js
= the full-fledged, human-readable/editable source code files, including documentation
for using the code.
*.pack.js = "packed" source code files, meaning they are
optimized for maximum space savings (which also means obfuscated).
They are created using one of the packers derived from
http://dean.edwards.name/packer/.
*.min.js = source code files "minimized" for space savings using
jsmin.
They are not obfuscated, but are nonetheless not intended for human consumption.
*.yuimin.js = similar to the .min.js files, but these are compressed using
the
YUI minifier,
which claims to be less error-prone than the conventional PACK method and smaller than normal MINinification.
They are obfuscated, not intended for human consumption.
When deploying applications which use this code, the compressed
versions are recommended, as they help reduce the download time of
the application. Also, combining multiple scripts into a single file
can notably reduce the download overhead.
|