I'm curious which event is fired first when using jQuery and jQuery Mobile.
Oddly enough, the first console output I get is pagebeforecreate
then document ready
and then onload
.
I would like to know if any other events are being fired before these ones.
$('html').bind('pagebeforecreate',function(event) {
console.log("pagebeforecreate");
});
$(document).ready(function() {
console.log("document ready");
});
window.onload = function(){
console.log("onload");
};