Currently I have all my JavaScript functions in a single function so the I don't pollute the global namespace.
e.g.
var App = function() {
function a() {
}
return {};
}();
Now I would like to use jQuery so I would like this wrapped in the following:
(function (window, document, $) {
...
}(window, document, jQuery));
I have tried wrapping the var App = function () {} in the jQuery function, however this causes problems when I have AJAX setting properties on App. Any ideas?