Skip to content Skip to sidebar Skip to footer

Get A File From Other Remote Server Using Ajax?

anyone please suggest any remote server url which provide any file free, so i can get file on local using AJAX var request=new XMLHttpRequest(); request.open('GET','',false); reque

Solution 1:

var url= http://api.geonames.org/postalCodeLookupJSON?postalcode=6600&country=AT&username=demo;

request.open('GET',url,false);

Post a Comment for "Get A File From Other Remote Server Using Ajax?"