I'm using gulp to concat a bunch of individual js files into one uglified, minified js file. It works fine.
Since all these individual js files all have a jQuery document.ready
, is that good? The end result would be having several document.ready
s in the minified version.
What is the best practice for this?