In legacy projects I used to load all jquery custom code in one doc.ready in one file on every page (easy to maintain, but lots of un-needed selectors per page). I started to think (a) this is messy programming anf (b) this must be bad performance, so I started to do some research.
I basically wanted one js file but wanted to only load/serve the queries/selectors/functions that were needed by that page.
I have come across 2 options:
(script call at bottom of page above closing body tag
mylib.article.init();
global.js
var mylib =
{
article_page :
{
init : function()
{
// Article page specific jQuery functions.
}
},
traffic_light :
{
init : function()
{
// Traffic light specific jQuery functions.
}
}
}
2 . http://jonraasch.com/blog/5-performance-tuning-tricks-for-jquery
Suppose that in parts of a site we want to collapse side navigation elements on page load:
$(document).ready(function() {
$('#sideNav LI:not(#current)').hide();
});
Even though some pages don’t have the side nav, this won’t throw an error in any browser, but let’s still make sure that the hide function only executes when it’s needed:
$(document).ready(function() {
var sideNavPages = ['catalog', 'order', 'contact'];
if ( jQuery.inArray(thisPage, sideNavPages) != -1 ) {
$('#sideNav LI:not(#current)').hide();
}
});
Which of the 2 above is better? Is there a third even better option?
Good to know what people think.
Adi.