JSFiddle - React, Tailwind, and code Playground

by KARTHIKEYAN K

JavaScript

$.getJSON("http://ip-api.com/json/?callback=?", function(data) {
var items = [];
$.each( data, function( key, val ) {
if (key == 'city') {
alert( "DetectedCityName=" + val);
}
if (key == 'region') {
alert( "DetectedRegionName=" + val);
}
});
});