Hi,
My code sample is like below:
$.ajax({
url: 'test.php',
data:somedatahere,
dataType:'JSON',
type:'POST',
cache:false,
success: function(data) {
if(data.error == "success")
{
$.mobile.changePage('index.html',{reload : true, changeHash : true});
}
},
error: function(data) {
}
});
When I just include only page - $.mobile.changePage('index.html') It works fines. The problem occurs only when I reload and changeHash or included any transition.