Question HTML5 Boilerplate plugins.js

Can someone explain to me how they use the plugins.js file found in the HTML5 Boilerplate. I do not quite understand the purpose of how this can be useful.

Thanks!:)

+4
source share
3 answers

I wrote a Getting Started Guide to help with this. Let me know if this is not clear!

+7
source

Paul Irish (the author of the template) made an “official guide” for him, he was posted on net.tuts +.

Link here

+5
source

He used to add his own jQuery snippets and code inside

(function($){ })(window.jQuery); 

Or any custom javascript outside of it. They added the ability to register and debug js inside (read comments inside the file)

+2
source

Source: https://habr.com/ru/post/955104/


All Articles