このコードは Firefox、Chrome では動作しますが、どのモバイル デバイスでも動作しません。Safari を使用した iPhone と Chrome を使用した iPhone でテストしましたが、動作しませんでした。
クロスドメインで、Migrate Plugin で jQuery 1.9.1 を使用しています。
戻りステータスは NULL です。
$.ajax({ url: 'http://mywebsite.com.br/ajaxPage.php',
type: 'POST',
dataType: 'json',
data:{ user: 'dude' },
complete:function(){
alert('Ajax: Complete');
},
success: function(callBack){
alert('Ajax: Success');
alert(callBack.message);
},
error:function(obj,text,status){
//alert(obj)
console.log(obj);
console.log('text');
alert('Ajax: Error');
alert(text);
alert(status);
}
});