I am building an application using WorldBank API, but WorldBank API does not support JSONP. So is there a way to parse remote JSON using Javascript. Thank You
I am building an application using WorldBank API, but WorldBank API does not support
Share
Due to the same origin policy restriction you cannot send direct AJAX calls to different domains. You may take a look at the following guide for different solutions. Since JSONP is out of the equation for you, an alternative would be to use a server side script that will act as a bridge between your domain and the distant domain.