Created
June 29, 2009 19:13
-
-
Save coderifous/137744 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
// easily digestable document ready | |
$(function(){ | |
initializeFoo(); | |
initializeBar(); | |
initializeBaz(); | |
}); | |
// non global functions | |
function initializeFoo() { | |
//... | |
} | |
function initializeBar() { | |
//... | |
} | |
function initializeBaz() { | |
//... | |
} | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment