pageinit event not fired with 1.3.1

pageinit event not fired with 1.3.1

I try to upgrade from jqurey mobile 1.2.0 to latest 1.3.1.
I replace the live method by on to create pageinit event, but the event is never fired.
I modifed the index.html provided with the download to add pagebeforelord and pageinit events and it's the same problem.

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>jQuery Mobile: Theme Download</title>
        <link rel="stylesheet" href="themes/elagamobile.min.css" />
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile.structure-1.3.1.min.css" />
        <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
        <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
        <script type="text/javascript">
        $( "#tstpage" ).on( "pagebeforecreate", function( event ) {
            alert( "This page was just inserted into the dom!" );
        });
        $( "#tstpage" ).on( "pageinit", function( event ) {
            alert( "This page was just initialized!" );
        });
        </script>
    </head>
    <body>
        <div id="tstpage" data-role="page" data-theme="a">
            <div data-role="header" data-position="inline">
                <h1>It Worked!</h1>
            </div>
            <div data-role="content" data-theme="a">
                <p>Your theme was successfully downloaded. You can use this page as a reference for how to link it up!</p>
                <pre>
<strong>&lt;link rel=&quot;stylesheet&quot; href=&quot;themes/elagamobile.min.css&quot; /&gt;</strong>
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.3.1/jquery.mobile.structure-1.3.1.min.css&quot; /&gt;
&lt;script src=&quot;http://code.jquery.com/jquery-1.9.1.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js&quot;&gt;&lt;/script&gt;
                </pre>
                <p>This is content color swatch "A" and a preview of a <a href="#" class="ui-link">link</a>.</p>
                <label for="slider1">Input slider:</label>
                <input type="range" name="slider1" id="slider1" value="50" min="0" max="100" data-theme="a" />
                <fieldset data-role="controlgroup"  data-type="horizontal" data-role="fieldcontain">
                <legend>Cache settings:</legend>
                <input type="radio" name="radio-choice-a1" id="radio-choice-a1" value="on" checked="checked" />
                <label for="radio-choice-a1">On</label>
                <input type="radio" name="radio-choice-a1" id="radio-choice-b1" value="off"  />
                <label for="radio-choice-b1">Off</label>
                </fieldset>
            </div>
        </div>
    </body>
</html>

Where is the problem?
Thanks for help.