overview of JS functions etc.
/*
* anonymous, self-executing functions
*
*/
(function() {
// do stuff..
})();
/*
* bundling functions together
*
*/
var stuff = {
first: function(){
// do first stuff..
},
second: function(){
// do second stuff..
}
}
stuff.first();
/*
* same ^ with jQuery
*
*/
jQuery.stuff = {
first: function() {
// do first stuff..
},
second: function() {
// do second stuff..
}
};
$.stuff.first();