Extend current objects with jQuery

Note : its good practice to extend objects instead of recreate them


// Navigation component scripts
var bobcat = bobcat || {};

bobcat.components = $.extend(bobcat.components, {

    "navigation": (function() {
        this._init = function() {
            // some initial functions
        }

        return {
            init: this._init
        }
    })()
});


No comments:

Post a Comment