ajax jquery simple get request

It seems to me, this is a cross-domain issue since you’re not allowed to make a request to a different domain.

You have to find solutions to this problem: – Use a proxy script, running on your server that will forward your request and will handle the response sending it to the browser Or – The service you’re making the request should have JSONP support. This is a cross-domain technique. You might want to read this http://en.wikipedia.org/wiki/JSONP

Leave a Comment