- , . dom, , .
init , , . id = "# index". , . #index, teamliquid.html.
<head></head> :
$(document).on('pageinit','#index', function(){
$('#rssFeed').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews', {
limit: 10,
date: false,
});
});
$(document).on('pageinit','#otherpage', function(){
... This would be for the other page you are referring to....
});
$(document).on('swipeleft','#index', function(){
$.mobile.changePage("teamliquid.html", { transition: "slide" });
});
$(document).on('swiperight','#otherpage', function(){
$.mobile.changePage("index.html", { transition: "slide" });
});
$(document).on('pageinit','[data-role=page]', function(){
....ground breaking code...
});
jquery 1.7 bind, live delegate .on(). JQM. , "#index" "[data-role = page]", . JSfiddle, , . http://jsfiddle.net/codaniel/cEWpy/2/