ajax comet

Solutions on MaxInterview for ajax comet by the best coders in the world

showing results for - "ajax comet"
Giacomo
05 Jun 2017
1var url = 'http://www.geonames.org/postalCodeLookupJSON?postalcode=' 
2    + $('#postalCode').val() + '&country=' 
3    + $('#country').val() + '&callback=?'; 
4$.getJSON(url, function(data) { 
5    $('#placeName').val(data.postalcodes[0].placeName); 
6});
7