Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amrishodiq/53c68b7102bc901146aefe30a5ad0a45 to your computer and use it in GitHub Desktop.
Save amrishodiq/53c68b7102bc901146aefe30a5ad0a45 to your computer and use it in GitHub Desktop.
JavaScript Lazy Loading
// Try to load 'worship.js' asynchronously, then
$.getScript("worship.js", function( data, textStatus, jqxhr ) {
whenWorshipJsLoaded();
});
function whenWorshipJsLoaded() {
// Todo: Do something after 'worship.js' successfully loaded.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment