Getting information from an external API using jsonp
As you probably know, it is not possible to retrieve information from an external source located on a different domain to your client-side code directly using a traditional AJAX call. This is because of the cross-site scripting policy, which tries to protect websites from malicious script injection. To overcome this situation there is a workaround […]