Skip to content

Instantly share code, notes, and snippets.

@mkuklis
Created April 6, 2012 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkuklis/2321307 to your computer and use it in GitHub Desktop.
Save mkuklis/2321307 to your computer and use it in GitHub Desktop.
PhoneGap JQM Initialization
var jqmReady = $.Deferred(),
pgReady = $.Deferred();
// jqm ready
$(document).bind("mobileinit", jqmReady.resolve);
// phonegap ready
document.addEventListener("deviceready", pgReady.resolve, false);
// all ready :)
$.when(jqmReady, pgReady).then(function () {
// do your thing
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment