Вы можете привязаться к событию pagehow и запускать код jquery в зависимости от того, когда страница отображается:
$(document).ready(function(){
$('div').live('pageshow', function () {
if(this.id=="months.html"){
//Page specific to a page div with "months.html" id
alert("The month.html page was just shown");
}
});
});