Here's my situation:
I have two pages. I use this line of code to execute things when a user changes between the two pages. It works, but only when I am loading a page for the first time. If I am returning to a previous page (one that I already visited), it doesn't call this method.
$('div:jqmData(role="page")').live('pagebeforeshow',function(){ ... });
For example:
Any reason why that would happen?