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! :)
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! :)
I wrote a Getting Started guide to help out with that. Let me know if it is not clear!
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)