JSFiddle - React, Tailwind, and code Playground

by f0t0n

JavaScript

// Actually we can send regular AJAX request to this domain
// since it sends header Access-Control-Allow-Origin:*
// which allows cross-domain AJAX calls.
$.get('http://j.maxmind.com/app/geoip.js', function(data) {
    
    console.log('Retrieved data:',
                data,
                'is type of', typeof data);
    
    // Now we have some functions to use:
    console.info('Some info:', geoip_country_name(),
                geoip_latitude(),
                geoip_longitude());
});