Skip to content

Instantly share code, notes, and snippets.

@darren131
Created June 20, 2012 22:57
Show Gist options
  • Save darren131/2962766 to your computer and use it in GitHub Desktop.
Save darren131/2962766 to your computer and use it in GitHub Desktop.
JavaScript: Closure
(function( $ ){
// set up global variables
var ObjectName;
// Navigation object
ObjectName = {
method: function() {
},
init: function() {
}
};
ObjectName.init();
})( jQuery );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment