I want to reduce the HTTP request on my website as much as possible.
Is it ok to minify all the JS in one big minified file, including external libraries such as jQuery?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes; this is perfectly fine, and common practice.
However, you may prefer to load jQuery from Google’s CDN instead of including it in the bundle.
This saves time for people who already have Google’s jQuery in their cache.