Re: Performance and taking time to load the website
Try these tips and see if it will optimize your js files, first is order in which elements are loaded, it’s important that all elements in the <head> section are pre-loaded, before the visitor sees anything in browser, then all subsequent elements are ordered to load in a logical way. Next is Minify JavaScript code for smaller file sizes. Minifying code is different from obfuscating code, but both are methods of transforming JavaScript—to be more difficult to read, or to make it smaller. Minification accomplishes the latter, and can shrink file sizes to decrease page load times. Next is to optimize it! Optimization is a special type of JavaScript minification. These kind of minimizers not only delete unuseful white spaces, commas, comments etc. but also help to avoid ‘dead code’