What\'s the right way to initialize objects on a jquery mobile page? The events docs say to use \"pageInit()\" with no examples of that function, but give exam
pageInit()
Try this:
$('div.page').live('pageinit', function(e) { console.log("Event Fired"); });