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 examples of binding to the "pageinit" method (note case difference). However, I don't see the event firing at all in this simple test page:

<html>
 <body>  
  <script type="text/javascript" charset="utf-8" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>  
  <script type="text/javascript" charset="utf-8" src="http://code.jquery.com/mobile/1.0b3/jquery.mobile-1.0b3.min.js"></script>

  <div data-role="page" id="myPage">
    test
  </div>

  <script>
    $("#myPage").live('pageinit',function() {
        alert("This never happens");
    });
  </script>
 </body>
</html>

What am I missing? I should add that if you change pageinit to another event like pagecreate this code works.

---- UPDATE ----

This bug is marked as "closed" in the JQM issue tracker. Apparently opinions differ about whether this is working properly or not.

link|improve this question

1  
I am using RC1, and I have exactly opposite problem, I added pageinit to do event binding for ajax calls. call to pageinit event-method get increased each time the page loaded, e.g. if I visit that page three times, on third visit, same method get called three times. any idea. – Sutikshan Dubey Oct 11 '11 at 7:36
feedback

6 Answers

up vote 32 down vote accepted

It started working when I embedded script within page div:

<body>
    <div id="indexPage" data-role="page">
        <script type="text/javascript">
            $("#indexPage").live('pageinit', function() {
                // do something here...
            });
        </script>
    </div>
</body>

Used jQuery Mobile 1.0RC1

link|improve this answer
1  
Can confirm this solution works with the 1.0 release as well. Not sure what the issue is. – Ravishankar V Nov 21 '11 at 9:39
1  
This seems to be just a good habit to get into when using jQuery Mobile - put everything that corresponds to a page inside your <div data-role="page">, then it works whether or not the fragment is loaded with AJAX or not. Although there've been updates addressing this kind of per-page functionality in the later releases, and although it might not seem "clean" as far as XHTML goes, it's just more inline with the way JQM works. – Chris Nash Jan 2 at 1:09
2  
After a long search, I finally found this in Jquery Mobile's document: Another approach for page-specific scripting would be to include scripts at the end of the body element when no data-role=page element is defined, or inside the first data-role=page element. So this is by designed. – Dikei May 11 at 10:42
feedback

Turns out this is a bug in 1.0b3 that is fixed in the current head. So if you want a fix now, you gotta grab the latest from git. Or wait for the next release.

link|improve this answer
1  
1.0 RC1 was just released, and it fixes this issue. – Ofri Raviv Sep 30 '11 at 13:58
It doesn't not work with the 'latest' versions from the git HEAD. Did you use those? I just added another comment to the github issue. It still does not work for me. This is my live test (using your code, but with the latest css/js from the git HEAD): bit.ly/qlUL7R – Mathias Lin Oct 1 '11 at 13:02
Also just tried 1.0 RC1 code, not working. bit.ly/qlUL7R – Mathias Lin Oct 1 '11 at 13:30
Related bug in RC1 where pageinit does not fire on ajax-loaded pages: github.com/jquery/jquery-mobile/issues/2636 – Leopd Oct 7 '11 at 5:31
1  
I just verified it's still a bug in 1.1. – Jun1st May 11 at 8:31
feedback
jQuery(document).live('pageinit',function(event){
    centerHeaderDiv();
    updateOrientation();
    settingsMenu.init();
    menu();
    hideMenuPopupOnBodyClick(); 
})

This is working now. Now all page transitions and all JQM AJAX functionality would work along with your defined javascript functions! Enjoy!

link|improve this answer
feedback

I had to put the script in the HTML page section which to me is a bug. It is loaded normally in a browser (not via AJAX) and all on a single page including javascript. We're not supposed to have to use document ready.

link|improve this answer
feedback

try this:

jQuery( 'div.page' ).live( 'pageinit',function(event){
    console.log("carai tu");
});
link|improve this answer
feedback

The events don't fire on the initial page, only on pages you load via Ajax. In the above case you can just:

<script>
  $(document).ready(function() {
      alert("This happens");
  });
</script>
link|improve this answer
4  
Then why do the docs say "We recommend binding to [pageinit] instead of DOM ready() because this will work regardless of whether the page is loaded directly or if the content is pulled into another page as part of the Ajax navigation system." – Leopd Sep 27 '11 at 5:08
I think we're at cross purposes. I thought you wanted to know how to change the landing page. The latest documents say "However, in jQuery Mobile, Ajax is used to load the contents of each page into the DOM as you navigate, and the DOM ready handler only executes for the first page. To execute code whenever a new page is loaded and created, you can bind to the pagecreate event." – Tim Niblett Sep 27 '11 at 18:42
pagecreate also doesn't work for me (in 1.0b3), when the page is loaded via Ajax, only works without Ajax. Is it the same bug as with pageinit? – Mathias Lin Oct 1 '11 at 12:45
1  
Only seems to work when placing the <script> section within the <div data-role="page"> section (unfortunately not really clean html as per xhtml, but oh well...). – Mathias Lin Oct 3 '11 at 9:45
I have a same problem. page init works only when it is placed in the body. This reported as a bug in github.com/jquery/jquery-mobile/issues/2540 but it is closed. However it looks like a bug to me. – JocaPC Oct 27 '11 at 21:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.