PageCreate event issue

PageCreate event issue

Hello everyone,

Whenever I navigate to a new page through a jquery-ajax function, pageCreate Event do not get fired again when called from the new page.

E.g

$(document).on("pagecreate", function() { page 2 functions goes here...};)
.................................................................................

Page 1(privacy policy) navigated to Page 2 (login page) using $.mobile.changePage('Page 2.html');
Page 2 needs to call Page 3 (main page) also using $.mobile.changePage('Page 3.html') but the pageCreate event do not get fired

Please what can be the cause of this?