I have a website that load JQuery that triggers a AJAX call to a API, this call works in all browsers except one, Chrome iOS. Using Weinre I got that my requests is going to http://localhost:0/chromecheckurl
and I don't have any idea how to fix it.
$.ajax({
url: "http://www.example.com/api",
dataType: 'jsonp',
type: 'GET',
async: true,
cache: false
}).done( (data) ->
# some code
)
There is a blog post on NewRelic that talk about it, but didn't said any solution - NewRelic blog post.
I really appreciate any help,
Thanks