↧
Answer by Luis for Cross Domain URL
You need to use JSONP to make cross site request calls try this:$.ajax({ url: 'http://api.addressify.com.au/address/autoComplete', type: 'GET', dataType:'jsonp', jsonpCallback:'callback', data:...
View ArticleAnswer by GreymondTheLong for Cross Domain URL
Just add the data to the URL section of your ajax call.$.ajax({ url:...
View Article