JSFiddle - React, Tailwind, and code Playground

ipinfo.io different example (2nd of 4 maybe)

by dledle2

HTML

<hr/>Silkroad Online Player Locator
<div id="TheCountry"></div>
<hr/>Please add this information to the database when the user is registering for an account<pre id="details"></pre>

<iframe src="http://www.w3schools.com/tags/demo_iframe_sandbox_origin.htm" sandbox="allow-same-origin allow-scripts">
  <p>Your browser does not support iframes.</p>
</iframe>

CSS

ipinfo.io different example (2nd of 4 maybe)

JavaScript

$.get('http://ipinfo.io/', function (response) {
    $('#TheCountry').html("Player's Country: " + response.country);
   alert( 'Load was performed.' );
}, "jsonp");

$.get("http://ipinfo.io");
alert('hi');