I would like to bind some new events and call some functions on a dynamically loaded page, but the examples out there seem outdated and/or incomplete (even the jqm docs). I am using jQuery 1.7.2 and jQuery Mobile 1.2. What is the correct way to do something like this?
$('#someButton').click(function(e) {
e.preventDefault();
$.mobile.changePage("mypage2.html", {
type: 'GET',
changeHash: true
});
//BELOW SHOULD BE CALLED WHEN THE PAGE LOADS THOUGH
doSomething();
$('#menu_page .request-items', contentScopeOfPage2).click(function (e) {
doSomethingElse();
});
});