I'm looking for a way to tap into JQM and override stuff BEFORE the first page is being loaded.
JQM initializes like so (from latest JQM code):
( function( $, window, undefined ) {
var $html = $( "html" ),
$head = $( "head" ),
$window = $( window );
// trigger mobileinit event
$( window.document ).trigger( "mobileinit" );
...
$.extend($.mobile, {
// find and enhance the pages in the dom and transition to the first page.
initializePage: function() {
...
// alert listeners that the pagecontainer has been determined for binding
// to events triggered on it
$window.trigger( "pagecontainercreate" );
...
So there are two events I could tap into: mobileinit and pagecontainercreate. I know this is easy from the HTML like so:
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$( window ).bind( 'pagecontainercreate', function() {
console.log("HELLO");
});
</script>
<script type="text/javascript" src="jquery.mobile-1.1.0.multiview_con.js"></script>
<script type="text/javascript" src="plugin.js"></script>
But what if I wanted to bind to these events from INSIDE plugin.js sitting AFTER JQM? If I put the same listener inside plugin.js it never fires. I assume, because it's too late. But I need to preventDefault loading the first page, so as soon as JQM trys to load the inital page, it will be too late for me.
Question:
Is there any way to listen to either one of these events or any other event firing before the first page loading commences from a plugin sitting after JQM?
EDIT:
I can't use pageinit, because it will fire after the call to the first page. Dito for pageCreate, which also doesn't fire from inside a plugin.
$(document).bind('mobileinit', function(){});with$.mobile.autoInitializePage = false;? – Ohgodwhy Jun 17 '12 at 17:49plugin.jsfile before the jQuery Mobile include. Or include at least some code before the jQuery Mobile file that binds to the event. – Jasper Jun 17 '12 at 20:55