Android 4.2 デバイスで Async Ajax 呼び出しから応答を取得できません。タイムアウトになるたびに
xhr = $.ajax({
type: 'GET',
url: url,
async: true,
contentType: "application/json",
timeout : 20000
});
xhr.done(function(data, status, xhr) {//This never gets invoked.});
いつもタイムアウトになります。ただし、async : false
最大 2 秒以内に応答を得ることができれば。