JSFiddle - React, Tailwind, and code Playground

by Brian Houlihan

HTML

xx<div id="chatdiv" style="display: none;">Chat Link</div>zz

JavaScript

$.get("http://ipinfo.io", function(response) {
    console.log(response.ip, response.country);
    if ( (response.country == null) || (response.country == "US") ) {
        $("#chatdiv").show();
    }
}, "jsonp");