Skip to content Skip to sidebar Skip to footer

Html5 Boilerplate Plugins.js Question

Can someone explain to me how they use the plugins.js file, found in HTML5 Boilerplate. I don't really understand the purpose of it, or how it can be useful. Thanks! :)

Solution 1:

I wrote a Getting Started guide to help out with that. Let me know if it is not clear!

Solution 2:

Paul Irish (the author of boilerplate) has made a "official guide" for it, it's hosted on the net.tuts+ network.

Link here

Solution 3:

It's used to add your own jQuery snippets and code inside

(function($){

})(window.jQuery);

Or any custom javascript outside it. They added an option to log and debug your js inside (read the comments inside the file)

Post a Comment for "Html5 Boilerplate Plugins.js Question"