JSFiddle - React, Tailwind, and code Playground

by Ryan Brackett

HTML

<pre id="details"></pre>

JavaScript

$.get("http://ipinfo.io", function (response) {


    var currentLocation = response.city +", " + response.region;
		
		currentLocation = currentLocation.replace("Georgia", "GA");
		
		
		
}, "jsonp");