Skip to content

Instantly share code, notes, and snippets.

@Irfan-Ansari
Forked from guilhermepontes/gist:4504091
Created March 8, 2014 23:54
Show Gist options
  • Save Irfan-Ansari/9440872 to your computer and use it in GitHub Desktop.
Save Irfan-Ansari/9440872 to your computer and use it in GitHub Desktop.
var app = app || {};
//object literal
app = {
init: function(){
this.cache();
this.bind();
},
cache: function(){
this.anchor = $( 'a' );
},
bind: function(){
this.anchor.on( 'click', this.doSomething )
},
doSomething: function(){
console.log( "Simple app." );
}
}
app.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment