JSFiddle - React, Tailwind, and code Playground

by shapeshifta

JavaScript

jQuery.ajax( {
  url: '//freegeoip.net/json/',
  type: 'POST',
  dataType: 'jsonp',
  success: function(location) {
		$('body').html(JSON.stringify(location))
  }
});