JSFiddle - React, Tailwind, and code Playground
ipinfo.io different example (3rd of 4 maybe)!! - jQuery get, overall which has weird results in diff browsers!!!!
by dledle2
HTML
<span>192.110.160.11</span><br>
<span>177.67.82.22</span><br>
<span>36.75.102.33</span><br>
CSS
ipinfo.io different example (3rd of 4 maybe)!! - jQuery get, overall which has weird results in diff browsers!!!!
JavaScript
$("span").each(function(i){
console.log(this);
var self = this;
var ip = $(this).text();
$.get("http://ipinfo.io/"+ip, function (response) {
$(self).html(ip+"-"+response.country);
}, "jsonp");
});