I am using following jquery -
- Jquery 1.11.1
- Jquery Mobile 1.4.2
But I am not able to call pagecreate method in my code. However it works fine with document.ready. Also, I tried with older version of Jquery and replaced "on" with "live" it worked. But "live" has been deprecated after version 1.9. I have to use Jquery1.11.1. Following is my code-
$("#demo").on("pagecreate",function() {
//Do something (Control is not jumping here)
});